Skip to content
Advertisement

Tag: jmstemplate

What are template classes in Spring Java? Why are they called templates? For example jdbc-template, jms-template etc

I’m new to Java. I’ve only been programming it for about a year. What does Spring mean by the use of templates? In Spring, there is jdbc-templates, jms-templates etc.. What are template classes in java? Are they a special kind of design pattern or what? Thank you in advance. Answer They are called template as use the Template method pattern.

Advertisement