如何将 XML 文件传递到 JMS 队列
我有 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 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.