如何将 XML 文件传递​​到 JMS 队列

发布于 2024-11-28 18:56:36 字数 170 浏览 0 评论 0原文

我有 .xml 文件,我想将内容发送到 JMS 队列。在此我应该将此 xml 转换为文本消息并发送吗?或者有没有办法可以直接发送xml。

我还想知道是否可以将对象(例如:MyClass.java 的对象)发送到 JMS 队列?

请有人指导我。

I have .xml files and I want to send the content to the JMS queue. In this should I convert this xml to textmessage and send? or is there a way that we can directly send the xml.

And also I'd like to know is it possible to send objects (ex: objects of MyClass.java) to the JMS queue?

Please someone guide me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦年海沫深 2024-12-05 18:56:36

您可以使用 TextMessage 发送 XML。但由于 XML 已经存储在文件中,因此我会考虑使用 BytesMessage 只发送原始字节内容的可能性。如果您选择第一种选择,请在重新编辑文件内容时小心使用正确的编码。

Java 对象绝对可以作为 JMS 消息发送,只要它们是可序列化的。

You can use the TextMessage to send XML. But since the XML is already stored in files, I would look at the possibility to send just the raw byte content, using a BytesMessage. If you go for first alternative, be careful about using correct encoding when redin the file content.

Java objects can definitively be sent as JMS messages, as long as they ar serializable.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文