Pragadeesh Prakasam created AMQ-4189:
----------------------------------------
Summary: PooledConnectionFactory with JmsTemplate results in
MalformedParameterizedTypeException
Key: AMQ-4189
URL: https://issues.apache.org/jira/browse/AMQ-4189
Project: ActiveMQ
Issue Type: Bug
Components: activemq-pool
Affects Versions: 5.7.0
Environment: TomCat
Reporter: Pragadeesh Prakasam
<!-- JMS ConnectionFactory to use, configuring the embedded broker using XML
-->
<amq:connectionFactory id="jmsFactory" brokerURL="vm://localhost"/>
<!-- Spring JMS Template -->
<bean id="myJmsTemplate" class="org.springframework.jms.core.JmsTemplate">
<property name="connectionFactory">
<!-- lets wrap in a pool to avoid creating a connection per send -->
<bean class="org.springframework.jms.connection.SingleConnectionFactory">
<property name="targetConnectionFactory">
<ref local="jmsFactory" />
</property>
</bean>
</property>
</bean>
here if we use org.apache.activemq.pool.PooledConnectionFactory instead of
org.springframework.jms.connection.SingleConnectionFactory,
we are receiving org.springframework.beans.factory.BeanCreationException:
Initialization of bean failed; nested exception is
java.lang.reflect.MalformedParameterizedTypeException
We got this when we upgraded from ActiveMQ 5.4 to 5.7
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira