我正在使用 ActiveMq 5.4.3,并且正在使用队列。我有我的生产者作为 web 服务(不是 Ejb),我已经在 jboss 服务器中部署了 webserice 战争。我的服务很好。但是每次调用服务时,都会创建和关闭连接和会话。我想克服这个瓶颈,以便在我启动服务器时只创建一次连接和会话。我怎样才能做到这一点。我不希望 jboss 充当 mdb 容器。我已经在 jboss 的部署文件夹中部署了 activemq-rar,并将以下子系统添加到了我的 Standalone.xml
<subsystem xmlns="urn:jboss:domain:resource-adapters:1.0">
<resource-adapters>
<resource-adapter>
<archive>
activemq-ra.rar
</archive>
<transaction-support>XATransaction</transaction-support>
<connection-definitions>
<connection-definition class-name="org.apache.activemq.ra.ActiveMQManagedConnectionFactory" jndi-name="java:jboss/activemq/QueueConnectionFactory" enabled="true" use-java-context="true" pool-name="QueueConnectionFactory" use-ccm="true">
<config-property name="prefill">
false
</config-property>
<config-property name="max-pool-size">
20
</config-property>
<config-property name="ServerUrl">
tcp://localhost
</config-property>
<config-property name="use-strict-min">
false
</config-property>
<config-property name="min-pool-size">
5
</config-property>
</connection-definition>
</connection-definitions>
<admin-objects>
<admin-object class-name="org.apache.activemq.command.ActiveMQQueue" jndi-name="activemq/queue/outbound" enabled="true" use-java-context="true" pool-name="outbound">
<config-property name="Type">
javax.jms.Queue
</config-property>
<config-property name="Properties">
PhysicalName=queue.outbound
</config-property>
</admin-object>
<admin-object class-name="org.apache.activemq.command.ActiveMQTopic" jndi-name="activemq/topic/inbound" enabled="true" use-java-context="true" pool-name="inbound">
<config-property name="Type">
javax.jms.Topic
</config-property>
<config-property name="Properties">
PhysicalName=topic.inbound
</config-property>
</admin-object>
</admin-objects>
</resource-adapter>
</resource-adapters>
</subsystem>
现在,当我尝试使用 JNDI 获取连接(下面的代码)时
PooledConnectionFactory connectionFactory = (PooledConnectionFactory) context.lookupLink("java:jboss/activemq/QueueConnectionFactory");
我收到错误消息
javax.naming.NameNotFoundException: org.apache.activemq.ra.ActiveMQManagedConnectionFactory -- service jboss.naming.context.java."org.apache.activemq.ra.ActiveMQManagedConnectionFactory