I got 6 EAR applications running on Geronimo with ActiveMQ and each EAR has more than one queue, e.g. 5. (different queue is associated to different MDB class)
application
a1, a2, ... a6
queue
a1_q1, a1_q2, ....q1_q5
a2_q1, a2_q2, ....q2_q5
...
a6_q1, a6_q2, ....q6_q5
there exists reference (i.e. producer/consumer) between any two queue/MDB randomly. say, a2_q2 would send message to a1_q1, a1_q2, a1_q3, a2_1, a2_q2,
How can I concisely define those JMS resource in deployment description plan. i.e. geronimo-application.xml, openejb-jar.xml, ejb-jar.xml as well as web.xml.
<enterprise-beans>
<message-driven>
<ejb-name>a3_ejb1</ejb-name>
<ejb-class>MDB1</ejb-class>
<messaging-type>javax.jms.MessageListener</messaging-type>
<transaction-type>Container</transaction-type>
<activation-config>
<activation-config-property>
<activation-config-property-name>destination</activation-config-property-name>
<activation-config-property-value>a3_q1</activation-config-property-value>
</activation-config-property>
<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>
<!-- referred queue -->
<resource-env-ref>
<resource-env-ref-name>a1_q1</resource-env-ref-name>
<resource-env-ref-type>javax.jms.Queue</resource-env-ref-type>
</resource-env-ref>
<resource-env-ref>
<resource-env-ref-name>a1_q2</resource-env-ref-name>
<resource-env-ref-type>javax.jms.Queue</resource-env-ref-type>
</resource-env-ref>
....
</enterprise-beans>