在GlassFish Server 2.1上我创建了一个GenericJMSRA,用于连接ActiveMQ,如本指南所述:http://activemq.apache.org/sjsas-with-genericjmsra.html
我已经成功地使用以ejb-jar.xml注入上下文的经典方式部署MDB:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE ejb-jar PUBLIC '-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN' 'http://java.sun.com/dtd/ejb-jar_2_0.dtd'>
<ejb-jar>
<enterprise-beans>
<message-driven>
<ejb-name>QueueListener</ejb-name>
<ejb-class>foo.QueueListenerMDB</ejb-class>
<transaction-type>Container</transaction-type>
</message-driven>
</enterprise-beans>
</ejb-jar>
和sun-ejb-jar.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE sun-ejb-jar PUBLIC '-//Sun Microsystems, Inc.//DTD Application Server 8.1 EJB 2.1//EN' 'http://www.sun.com/software/appserver/dtds/sun-ejb-jar_2_1-1.dtd'>
<sun-ejb-jar>
<enterprise-beans>
<ejb>
<ejb-name>QueueListener</ejb-name>
<mdb-connection-factory>
<jndi-name>jms/amqQueueConnectionFactory</jndi-name>
</mdb-connection-factory>
<mdb-resource-adapter>
<resource-adapter-mid>activemqra</resource-adapter-mid>
<activation-config>
<activation-config-property>
<activation-config-property-name>DestinationType</activation-config-property-name>
<activation-config-property-value>javax.jms.Queue</activation-config-property-value>
</activation-config-property>
<activation-config-property>
<activation-config-property-name>destination</activation-config-property-name>
<activation-config-property-value>qRequest</activation-config-property-value>
</activation-config-property>
</activation-config>
</mdb-resource-adapter>
</ejb>
</enterprise-beans>
</sun-ejb-jar>
如何在注释驱动的EJB 3.0样式中注入上述配置?更具体地说,它是以下属性我无法找到如何注入:
<resource-adapter-mid>activemqra</resource-adapter-mid>
答案 0 :(得分:0)
终于有了工作。
我完全删除了ejb-jar.xml,并保持sun-ejb-jar.xml不变。然后我按如下方式注释了类foo.QueueListenerMDB:
@MessageDriven(name = "QueueListener", mappedName = "QueueListener")
public class QueueListenerMDB implements MessageListener {
...
}