美文网首页
SpringBoot gradle 中使用RabbitMQ(一)

SpringBoot gradle 中使用RabbitMQ(一)

作者: 表象_Dark | 来源:发表于2017-08-08 16:20 被阅读0次

1 gradle配置:

RabbitMQ 运行依赖:

compile('org.springframework.boot:spring-boot-starter-amqp:1.5.6.RELEASE')

SpringBoot 测试依赖:

compile('org.springframework.boot:spring-boot-starter-test:1.5.1.RELEASE')

2 配置文件

 host: 127.0.0.1
 port: 5672
 username: guest
 password: guest
 publisher-confirms: true #是否开启回调
 virtual-host: /

相关文章

网友评论

      本文标题:SpringBoot gradle 中使用RabbitMQ(一)

      本文链接:https://www.haomeiwen.com/subject/vvttrxtx.html