在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>
终于成功了
我完全删除了ejb-jar.xml,并保持sun-ejb-jar.xml不变。然后我注释了类foo。队列istenermdb如下:
@MessageDriven(name = "QueueListener", mappedName = "QueueListener")
public class QueueListenerMDB implements MessageListener {
...
}