【发布时间】:2018-12-22 04:33:16
【问题描述】:
我正在学习 ActiveMQ,到目前为止,我已经制作了一个简单的 Spring Boot 生产者+消费者应用程序(出于本问题的目的,将其称为 App1),它与 ActiveMQ 的本地实例进行通信,并且一切都按预期进行。
现在我正在尝试运行一个不同的 Spring Boot 应用程序(在同一台计算机上,但在确保 App1 没有运行之后)只有一个消费者(没有生产者),但是当我启动它时应用程序,队列中的消息(我使用修改后的 App1 删除了应用程序的消费者部分)不会被拾取。在 App1 中,消息一发布,消费者就打印出 system.out 打印语句,但在这个仅限消费者的应用程序中并非如此。下面是我的监听组件类:
package com.demo.listener;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jms.annotation.JmsListener;
import org.springframework.stereotype.Component;
@Component
public class Consumer {
@JmsListener(destination = "testqueue")
public void consume(String message) {
System.out.println("Picked up message: " + message);
}
}
为了达到预期的行为,我需要进行哪些更改?
App1 application.properties 文件:
spring.activemq.in-memory=false
spring.activemq.pool.enabled=false
server.port=9000
activemq.broker-url=tcp://localhost:61616
spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration, org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration
security.basic.enabled=false
management.security.enabled=false
App1 JmsConfig 类
import org.apache.activemq.ActiveMQConnectionFactory;
import org.apache.activemq.command.ActiveMQQueue;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.jms.core.JmsTemplate;
@Configuration
public class JmsConfig {
@Value("${activemq.broker-url}")
private String brokerUrl;
@Bean
public Queue queue() {
return new ActiveMQQueue("testqueue");
}
@Bean
public ActiveMQConnectionFactory activeMQConnectionFactory() {
ActiveMQConnectionFactory factory = new ActiveMQConnectionFactory();
factory.setBrokerURL(brokerUrl);
return factory;
}
@Bean
public JmsTemplate jmsTemplate() {
return new JmsTemplate(activeMQConnectionFactory());
}
}
App1生产者类
import javax.jms.Queue;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jms.core.JmsTemplate;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/rest/publish")
public class ProducerResource {
@Autowired
JmsTemplate jmsTemplate;
@Autowired
Queue queue;
@GetMapping("/{message}")
public String publishMessage(@PathVariable("message") final String message) {
jmsTemplate.convertAndSend(queue, message);
return "Published successfully";
}
}
App1 消费者类与我在仅限消费者的应用程序(如上所列)中使用的类相同。
【问题讨论】:
-
如果可能的话,请同时发布您的 application.properties 文件。以及侦听器配置类代码。您提供的信息太少,无法找出根本原因。
-
@AmithKumar 我已经添加了 App1 属性文件。对于第二个应用程序(仅限消费者的应用程序),它是我唯一的 JMS 相关类,并且属性文件中不存在 MQ/JMS 设置。
-
如果您使用 Spring-Boot,对于像您这样的简单用例,您不需要配置 bean。
-
还要注意activemq url属性应该以spring为前缀。像这样:
spring.activemq.broker-url=tcp://192.168.1.210:9876
标签: java spring-boot activemq