Simple JBoss JMS Queue configutation


/ Published in: Java
Save to your folder(s)

This is the MBean deceleration of a JMS Queue definition which can be embedded within jboss-service.xml that belogs to a Sar or to any other file which ends with service.xml and is picked up by JBoss


Copy this code and paste it in your HTML
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <server>
  4. <mbean code="org.jboss.mq.server.jmx.Queue" name="jboss.mq.destination:service=Queue,name=DummyQueue">
  5. <attribute name="MaxDepth">10000</attribute>
  6. <depends optional-attribute-name="DestinationManager">jboss.mq:service=DestinationManager</depends>
  7. <attribute name="InMemory">true</attribute>
  8. </mbean>
  9. </server>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.