GlassFish Server 2.1 では、次のガイドラインで説明されているように、ActiveMQ と接続するための GenericJMSRA を作成しました: 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>