ActiveMQ发送和接收XML文件的文件夹
我有一个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.
我只是使用文本类型消息并将
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: