我在grails中使用activemq插件。当我在tomcat中部署2个使用activemq的war文件时,tomcat永远不会完成启动。是因为端口被用在什么东西上?
我在WAR A中的服务方法:
def jmsService
static transactional = false
static exposes = ['jms']
@Queue(name='msgs.new')
def createMessage(msg) {}
jmsService.send(queue:'msgs.new', json.toString())
我在战争B中的服务方法
def jmsService
static transactional = false
static exposes = ['jms']
@Queue(name='msg.new')
def createMessage(msg) {}
jmsService.send(queue:'msg.new', json.toString())