码迷,mamicode.com
首页 > 编程语言 > 详细

springboot 简单使用 activemq 接收消息

时间:2019-03-27 09:16:23      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:des   程序   spring   port   lis   bpm   代码   work   ESS   

1.在pom.xml 加入配置文件

<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-activemq</artifactId>
        </dependency>

2.编辑代码

import org.springframework.jms.annotation.JmsListener;

@Component
public class BpmReceiver {

    @Resource
    JdbcTemplate jdbcTemplate;
    
    @JmsListener(destination = "oa")
        public void  receivedMessage(String message){
        }
}

这个消息message 是从队列读取的消息。

@JmsListener(destination = "oa")

这个 destination  表示队列名称。

3.编辑配置文件

spring:
  activemq: 
    broker-url: tcp://localhost:62222

这样程序就可以从指定的队列读取消息了。

 

springboot 简单使用 activemq 接收消息

标签:des   程序   spring   port   lis   bpm   代码   work   ESS   

原文地址:https://www.cnblogs.com/yg_zhang/p/10605186.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!