使用 Java 发送 JMS 消息
您好,我想连接 JMS 消息并将其从 JSP 发送到我在 Tibco 安装过程中安装的 JMS 服务器。现在,通过浏览互联网上的各种内容,我知道如何将消息从 JAVA 发送到 JMS 队列,但问题是我不知道如何连接到 JMS 服务器本身。 任何人都可以帮助我吗? 谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要在 Java EE 应用服务器上配置它 - WebLogic、JBOSS、Glassfish 等。
如果您在 Tomcat 或 Jetty 上部署 JSP,并且不使用成熟的 Java EE 应用服务器,则必须添加JMS 模块 - 查找 ActiveMQ 或 RabbitMQ 或 OpenJMS。
You need to configure it on a Java EE app server - WebLogic, JBOSS, Glassfish, etc.
If you deploy your JSP on Tomcat or Jetty, and don't use a full-fledged Java EE app server, you'll have to add a JMS module to it - look for ActiveMQ or RabbitMQ or OpenJMS.
基本上,您需要通过在 JNDI 目录中查找连接工厂来获取它,所有其他对象都是从该连接工厂创建的。
这是一个示例(来自 JBoss 文档),展示了如何创建主题会话:
更多示例 这里
Basically you need to get a connection factory by looking it up in the JNDI directory, all the other objects are created from that connection factory.
This is an example (from the JBoss docs) showing how to create a topic session:
More examples here
这是一个老话题,但也许会有所帮助。
要从用户界面(单击按钮)发送消息,您需要将按钮单击事件映射到 Java 端。然后您可以编写一段 java 代码来向 JMS 发送消息。
要将消息发送到 JMS 队列实际上需要执行以下操作:
这就是它的工作原理:
要获取需要连接到服务器的上下文:
获取连接工厂:
打开队列会话:
获取队列:
最后,发送您发送到队列的消息:
private static void sendMessageToQueue(boolean verbose,
字符串消息,
队列会话队列会话,
Queue 队列) throws JMSException {
}
这些代码片段来自这里: https://github.com/ zappee/jms-消息发送者
这是一个JMS发送方命令行工具,您可以使用这个项目作为示例。
希望有帮助。
This is an old topic, but maybe it can help.
To send a message from the user interface (clicking on a button) you need to map the button click event to the Java side. Then you can write a java code that sends a message to the JMS.
To send a message to a JMS queue actually need the followings:
And this is how it works:
To obtain the context you need to connect to the server:
Get the connection factory:
Open a queue session:
Get the queue:
And finally, send your message to the queue:
private static void sendMessageToQueue(boolean verbose,
String message,
QueueSession queueSession,
Queue queue) throws JMSException {
}
These code snippets come from here: https://github.com/zappee/jms-message-sender
This is a JMS sender command-line tool, you can use this project as an example.
Hope that it helps.