springboot集成activemq
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-artemis</artifactId>
</dependency>
@Bean
public Topic topic() {
return new ActiveMQTopic(bimTopic);
}
@Autowired
private JmsMessagingTemplate jmsMessagingTemplate;
jmsMessagingTemplate.convertAndSend(bimTopic, message);