我正在使用ActiveMQ,我为某些消息创建了生产者和消费者。
这样我创建连接,然后创建目标:
ActiveMQConnectionFactory factory = new ActiveMQConnectionFactory(username,password,"tcp://localhost:61616");
Connection connection = factory.createConnection();
connection.start();
Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
Destination destination = session.createQueue("MyQueue");
这样我创建了制作人并发送消息:
Producer producer = session.createProducer(destination);
producer.send(msgToSend);
我创建了使用者,并设置了一个监听器(实现MessageListener接口的类)
Consumer consumer = session.createConsumer(destination);
consumer.setMessageListener(this);
消费者连接到目的地,它正在收听消息。 当它从队列“MyQueue”中获取一些消息时,会触发MessageListener中的onMessage()方法并对消息执行任何操作。
我的代码工作,我能够生成和使用消息。生产者在服务器上,消费者在客户端(单独的项目)。
为了使它工作,我从here安装了apache-activemq-5.14.4-bin.zip。我把依赖项放在pom.xml中:
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-all</artifactId>
<version>5.14.0</version>
</dependency>
嗯,现在安装的ActiveMQ是一台在计算机启动时启动的服务。我不想将其作为服务安装,但启动它并在java中以编程方式停止它。例如,按下“开始”按钮并执行代码以启动它并按下“停止”并停止它。
我可以通过编程方式实现而不是将ActiveMQ安装为服务吗?
答案 0 :(得分:2)
答案 1 :(得分:1)
是的,您可以通过编程方式使用ActiveMQ(例如在测试中)。以下是一些详细信息:http://activemq.apache.org/how-to-unit-test-jms-code.html