Why does the Spring Framework have class JdbcDaoSupport that requires a DataSource and creates a JdbcTemplate internally, but has no analagous class JmsSupport that might require a JMS ConnectionFactory and create a JmsTemplate?
As I understand, the purpose of class JdbcDaoSupport is to eliminate redundant instances of JdbcTemplate (one per DataSource instance) in an application context. Instead, the container creates instances of an application DAO, each of which derives from JdbcDaoSupport, accepts a unique DataSource and provides this DataSource to the JdbcDaoSupport parent instance which in turn provides it to its internal JmsTemplate.
Why doesn't Spring provide an analogous class JmsSupport that would serve to reduce the number of JmsTemplate instances in an application context?