This content has been marked as final.
Show 2 replies
-
1. Re: Multiple MQ provider JBOSS EAP 6.4
jaikiran Jul 15, 2015 12:24 AM (in response to unnijboss)Unni N wrote:
It seems it supports only one resource adapter at a time.
<mdb>
<resource-adapter-ref resource-adapter-name="${ejb.resource-adapter-name:hornetq-ra}"/>
<bean-instance-pool-ref pool-name="mdb-strict-max-pool"/>
</mdb>
That's the "default" resource adapter to use for the MDBs. Each MDB can then further go ahead and override the resource adapter to use by using the @org.jboss.ejb3.annotation.ResourceAdapter on the MDB class or you could even use the jboss-ejb3.xml to override the resource adapter for whichever MDB you want to.
-
2. Re: Multiple MQ provider JBOSS EAP 6.4
unnijboss Jul 15, 2015 3:49 PM (in response to jaikiran)Thanks a lot..
It worked...