博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring 集成rabbiatmq
阅读量:6086 次
发布时间:2019-06-20

本文共 2432 字,大约阅读时间需要 8 分钟。

pom 文件

1   
2
3
com.rabbitmq
4
amqp-client
5
4.0.2
6
7
8
org.slf4j
9
slf4j-api
10
1.7.10
11
12
13
org.slf4j
14
slf4j-log4j12
15
1.7.5
16
17
18
log4j
19
log4j
20
1.2.17
21
22
23
junit
24
junit
25
4.11
26
27
28
org.springframework.amqp
29
spring-rabbit
30
1.7.5.RELEASE
31
32 33
pom文件

spring 集成rabbitmq 的核心配置

1 
7 8
9
12 13 14
15
16 17
18
19 20
21
22 23
24
25
26
27
28
29 30 31
32
33
34
35 36
37
38 39

业务方法的类 和方法

1 public class MyConsumer {2 3     4        //具体执行业务的方法5     public void listen(String foo) {6         System.out.println("消费者: " + foo);7     }8     9 }

执行rabbitmq

1 import org.springframework.amqp.rabbit.core.RabbitTemplate; 2 import org.springframework.beans.factory.annotation.Autowired; 3 import org.springframework.context.support.AbstractApplicationContext; 4 import org.springframework.context.support.ClassPathXmlApplicationContext; 5  6 public class SpringMain { 7      8     public static void main(final String... args) throws Exception { 9         AbstractApplicationContext ctx = new ClassPathXmlApplicationContext("classpath:context.xml");10         //RabbitMQ模板11         RabbitTemplate template = ctx.getBean(RabbitTemplate.class);12         //发送消息13         template.convertAndSend("Hello, world!");14         Thread.sleep(1000);// 休眠1秒15         ctx.destroy(); //容器销毁16     }17 18 }

 

转载于:https://www.cnblogs.com/wh1520577322/p/10071928.html

你可能感兴趣的文章
Delphi调用JavaScript解析JSON
查看>>
最短路径算法—Dijkstra(迪杰斯特拉)算法分析与实现(C/C++)
查看>>
java序列化(Serializable)的作用和反序列化(转)
查看>>
该死的百度部落格又做了什么改动?
查看>>
多线程 Java.util.ConcurrentModificationException异常
查看>>
应用程序无法正常启动0xc0150002 解决方式
查看>>
图片延迟加载并等比缩放,一个简单的JQuery插件
查看>>
spring 定时任务
查看>>
WebGL/X3DOM 跑在 iOS
查看>>
Hyper-v: Snapshot merge
查看>>
sdut2613(This is an A+B Problem)大数加法(乘法)
查看>>
python无私有成员变量
查看>>
程序员的自我修养(2)——计算机网络
查看>>
Windows Phone本地数据库(SQLCE):2、LINQ to SQL(翻译)(转)
查看>>
【WP8】仿QQ提示消息
查看>>
垂死挣扎还是涅槃重生 -- Delphi XE5 公布会归来感想
查看>>
怎样对ListView的项进行排序
查看>>
现代软件工程 第六章 【敏捷流程】练习与讨论
查看>>
《海量数据库解决方式》读后感
查看>>
Odoo 8.0 new API 之one装饰
查看>>