Tibco 与 JMS 应用程序
我想在我的 jms 应用程序中使用 tibco。任何人都可以帮助我如何使用 tibco 以及 tibco 有什么好处。
I want to use tibco in my jms application. Can any one help me how can I use tibco and also please what are the benefits from tibco.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 Tibco EMS 安装目录中的示例目录。它提供了直接使用 ems 库的最常见场景的示例。
如果您使用 Spring 来连接消息传递,那么与连接到 ActiveMQ 相比,您对 EMS 所做的事情实际上没有什么不同。创建一个 MessageListenerContainer 或一个 JMSTemplate 就可以了。
Take a look at the samples directory in your Tibco EMS installation directory. It provides samples for the most common scenarios using the ems libs directly.
If you are using Spring to wire up your messaging there really isn't anything different you do for EMS compared to connnecting to ActiveMQ for example. Create a MessageListenerContainer or a JMSTemplate and you are on your way.
TIBCO EMS 和其他 JMS 提供商之间的区别是一个大问题(基本上是价格、开源亲和力、24/7 客户支持等之间的权衡)。
如何使用它?
我建议您编写自己的示例 JMS 使用者,直接取自一本好书中的示例,例如:Richard Monson-Haefel 等人编写的 Java 消息服务。
(这个很小但简洁)
,然后使用如下参数配置您的示例:
对于 TIBCO 的 EMS JNDI:
-jndiContextFactory com.tibco.tibjms.naming.TibjmsInitialContextFactory
-jndiProviderUrl tibjmsnaming://localhost:7222
-主题测试
..
The different between TIBCO EMS and other JMS providers is a BIG question (bascially a trade-off between price, your open-source affinity, 24/7 customer support etc.)
How to use it ?
I would recommend writing your own example JMS consumer, straigth from examples from a good book, for example: Java Message Service, by Richard Monson-Haefel and others.
(this one is small but concise)
and then configure your example with arguments like this:
For TIBCO's EMS JNDI:
-jndiContextFactory com.tibco.tibjms.naming.TibjmsInitialContextFactory
-jndiProviderUrl tibjmsnaming://localhost:7222
-topic TEST
..