ActiveMQ发送和接收XML文件的文件夹

发布于 2024-10-25 04:53:50 字数 290 浏览 3 评论 0原文

我有一个java应用程序,可以进行文件的I/O:

模块1:输出txt文件(硬盘)。 模块 2:输入 txt 文件 (HD) 输出:XML 文件文件夹 (HD)

我想从 ActiveMQ

模块 1 -> 中受益输出(发送)txt文件(作为消息存储在ActiveMQ中) 模块 2:输入(接收):txt 文件(消息),输出(发送):XML 文件文件夹(ActiveMQ 消息)

我想将文件存储在 ActiveMQ 中,而不是存储在 HD 中。

可以用 activeMQ 做到这一点吗?

I have a java application that makes I/O of files:

Module 1 : output txt file (HardDisk).
Module 2: input txt file (HD) output: folder of XML files (HD)

I want to benefit from ActiveMQ

Module 1 -> output(send) txt file (stored as a message in ActiveMQ)
Module 2: input (receive) : txt file (message), output (send) : folder of XML files (ActiveMQ message)

I want store my files in ActiveMQ and NOT in my HD.

its possible to do that with activeMQ?

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

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

发布评论

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

评论(2

梦在夏天 2024-11-01 04:53:50

ActiveMQ 不是存储设施,而是消息传递设施。

话虽这么说,您应该看看 Camel、Mule 或 Spring Integration,它们都可以使用 ActiveMQ 进行消息传递。它们都支持轮询文件夹以查找要作为消息发送的文件并将消息存放到文件夹中。

ActiveMQ is not a storage facility, it is a message-passing facility.

That being said you should look at Camel, Mule or Spring Integration, all of which can use ActiveMQ for messaging. They all have support for polling folders for files to send as messages and depositing messages into folders.

荒路情人 2024-11-01 04:53:50

我只是使用文本类型消息并将 xml 文档转换为字符串,然后写入文本消息的正文。

示例:

textMsg.setText("<my_xml><whatever></whatever></my_xml>");

I just use a text type message and convert the xml docs into strings and then write out to the body of the text message.

Example:

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