如何知道JBoss是否预装了jboss MQ?
我已经配置了jboss 4.2.3,但我需要使用jboss-mq。查看我的默认服务器实例的 deplot 目录,我没有在其中找到 jms 目录。我如何知道这个 jboss 是否附带 jboss-mq,以及在哪里可以找到我的服务器实例所需的所有文件。 我知道 hornetmq 附带了一些安装脚本,可以将 jboss 配置为与 hornet 一起使用,是否有一些 jboss-mq 的脚本?
I have already configured jboss 4.2.3, but i need to use jboss-mq. Looked at the deplot dir of my default server instance and i didn't find jms dir in it. How can i know if this jboss comes with jboss-mq, and where i can find all needed files for my server instance.
I know that hornetmq comes with some install script that will configure jboss to work with hornet, is there some scripr for jboss-mq?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
server/default/deploy 中应该有一个 jms 目录,其中包含 jms-ra.rar 和各种 .xml 文件,当您启动服务器时,您可以在日志中看到部署的 JMS 资源适配器,例如
INFO [Server ] 版本 ID:JBoss [Trinity] 4.2.3.GA(内部版本:SVNTag=JBoss_4_2_3_GA 日期=200807181417)
...为简洁起见,剪掉了日志,然后...
INFO [RARDeployment] 存在必需的许可条款,请在 .../deploy/jms/jms-ra.rar 中查看 META-INF/ra.xml
以及 jms-ds.xml、jbossmq-destinations-service.xml 等中定义的关联默认 JMS 对象,例如
INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=ConnectionFactoryBinding,name=JmsXA' 到 JNDI 名称 'java:JmsXA'
这些文件存在于我刚刚解压测试的 .zip 中,因此,如果您缺少该目录,则有安装有问题。
There should be a jms directory in server/default/deploy that contains jms-ra.rar and assorted .xml files, and when you start the server you can see the JMS resource adapter deploying in the logs, e.g.
INFO [Server] Release ID: JBoss [Trinity] 4.2.3.GA (build: SVNTag=JBoss_4_2_3_GA date=200807181417)
...logs snipped for brevity, then...
INFO [RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jms/jms-ra.rar
along with associated default JMS objects defined in jms-ds.xml, jbossmq-destinations-service.xml etc., for example
INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=ConnectionFactoryBinding,name=JmsXA' to JNDI name 'java:JmsXA'
These files are present in the .zip I just unpacked to test, so if the directory is missing for you then there is something wrong with the install.