在jboss 7中为Activemq配置池连接jndi

时间:2012-08-07 06:34:16

标签: java axis2 activemq connection-pooling jboss7.x

我正在使用ActiveMq 5.4.3并且我正在使用队列。我有我的生产者作为web服务(不是Ejb),我已经在jboss服务器中部署了webserice war。我的服务很好。但每次调用服务时,都会创建并关闭连接和会话。我想克服这个瓶颈,以便在启动服务器时只创建一次连接和会话。我怎样才能做到这一点。我不希望jboss充当mdb容器。我已经在我的jboss的deploy文件夹中部署了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 

1 个答案:

答案 0 :(得分:0)

很简单,使用PooledConnectionFactory。

您可以通过代码来完成,也可以通过手头的任何XML配置来实现:

ConnectionFactory cf = new PooledConnectionFactory(new ActiveMQConnectionFactory("tcp://localhost:61616"));

Here是一个XML示例用法(对于spring,但你可能会从中得到这个想法)

然后它就像任何其他连接工厂一样。

Connection conn = cf.createConnection();
Session sess = conn.createSession..

ActiveMQ aspects on chaching (mostly spring related)