栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

无法使用基于JMS的代码和amqp 1.0访问ActiveMQ

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

无法使用基于JMS的代码和amqp 1.0访问ActiveMQ

最好与jndi合作

public static void main(String[] args) throws JMSException, InterruptedException, NamingException {    Connection connection = null;    try {        Properties props = new Properties();        props.put(Context.INITIAL_CONTEXT_FACTORY, "org.apache.qpid.jms.jndi.JmsInitialContextFactory");        props.setProperty("connectionfactory.myFactoryLookup",     "amqp://localhost:5672");        props.put("topic." + "MyTOPIC", "customerTopic");        InitialContext ic = new InitialContext(props);        ConnectionFactory cf1 = (ConnectionFactory) ic.lookup("myFactoryLookup");        Topic topic = (Topic) ic.lookup("MyTOPIC");        connection = cf1.createConnection();        Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);        MessageProducer producer = session.createProducer(topic);        connection.start();        for (int i = 0; i < 10; i++) { Message msg = session.createTextMessage("Task : " + i); producer.send(msg);        }        session.close();    } finally {        if (connection != null) { connection.close();        }    }}

更换

 <dependency>    <groupId>org.apache.qpid</groupId>    <artifactId>qpid-amqp-1-0-client-jms</artifactId>    <version>0.32</version></dependency>

通过

    <dependency>        <groupId>org.apache.qpid</groupId>        <artifactId>qpid-jms-client</artifactId>        <version>0.9.0</version>    </dependency>

在经纪人方面,您需要添加:

 <transportConnector name="amqp" uri="amqp://0.0.0.0:5672?transport.transformer=jms"/>

参考http://activemq.apache.org/amqp.html



转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/428862.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号