I want to use ActiveMQ with Spring under Jboss instead JbossMQ
Currently with JbossMQ I define the following:
I deploy ActiveMQ RAR under Jboss which JNDI settings I should use?Code:<bean id="jndiTemplate" class="org.springframework.jndi.JndiTemplate"> <property name="environment"> <props> <prop key="java.naming.provider.url">${java.naming.provider.url}</prop> <prop key="java.naming.factory.url.pkgs">org.jnp.interfaces:org.jboss.naming</prop> <prop key="java.naming.factory.initial">org.jnp.interfaces.NamingContextFactory</prop> </props> </property> </bean>


Reply With Quote