activemq « grails « Java Enterprise Q&A





1. Creating JMS Queues at runtime    stackoverflow.com

I am working on an application where the app user can create / delete queues . Also , he would be able to move a message from 1 queue to another, ...

2. Grails external Jms broker (active mq)    stackoverflow.com

I have what will become an 'external' activemq server I'd like grails to be able to talk to. Right now I am just running it on my dev box. Here is what ...

3. Change ActiveMQConnectionFactory brokerURL at runtime in grails    stackoverflow.com

I've got a bean defined in resource.groovy like

beans = {
    jmsConnectionFactory(org.apache.activemq.pool.PooledConnectionFactory) {bean ->
        connectionFactory = {org.apache.activemq.ActiveMQConnectionFactory cf ->
    ...

4. ActiveMQ broker embedded into Grails app is not listening for external connections    stackoverflow.com

I've used the grails-activemq plugin to embed an ActiveMQ broker into a Grails app running in Tomcat 7. The problem is that the broker is only listening for local connections. ...