服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Java教程 - SpringBoot 整合 JMSTemplate的示例代码

SpringBoot 整合 JMSTemplate的示例代码

2020-08-06 14:38Demo_Null Java教程

这篇文章主要介绍了SpringBoot 整合 JMSTemplate的示例代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

1.1 添加依赖

  可以手动在 SpringBoot 项目添加依赖,也可以在项目创建时选择使用 ActiveMQ 5 自动添加依赖。高版本 SpringBoot (2.0 以上) 在添加 activemq 连接池依赖启动时会报 Error creating bean with name 'xxx': Unsatisfied dependency expressed through field 'jmsTemplate'; 可以将 activemq 连接池换成 jms 连接池解决。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-activemq</artifactId>
</dependency>
 
<!-- activemq 连接池 -->
<dependency>
  <groupId>org.apache.activemq</groupId>
  <artifactId>activemq-pool</artifactId>
</dependency>
 
<!-- jms 连接池 -->
<dependency>
  <groupId>org.messaginghub</groupId>
  <artifactId>pooled-jms</artifactId>
</dependency>
SpringBoot 整合 JMSTemplate的示例代码

1.2 添加配置

?
1
2
3
4
5
6
7
8
9
10
11
12
spring:
 activemq:
  broker-url: tcp://127.0.0.1:61616
  # 是否是内存模式
  in-memory: false
  pool:
   # 是否用 PooledConnectionFactory 代替普通的 ConnectionFactory
   enabled: true
   # 最大连接数
   max-connections: 10
   # 连接空闲超时
   idle-timeout: 30000

1.3 测试类

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
 * Created with IntelliJ IDEA.
 *
 * @author Demo_Null
 * @date 2020/8/5
 * @description MQ 测试
 */
@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest()
public class MyMQTest {
 
  @Autowired
  private JmsTemplate jmsTemplate;
 
  @Test
  public void jms() {
    jmsTemplate.convertAndSend(new ActiveMQQueue("myTest"), "测试消息");
  }
}

1.4 运行结果

SpringBoot 整合 JMSTemplate的示例代码

SpringBoot 整合 JMSTemplate的示例代码

SpringBoot 整合 JMSTemplate的示例代码

到此这篇关于SpringBoot 整合 JMSTemplate的示例代码的文章就介绍到这了,更多相关SpringBoot 整合 JMSTemplate内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/Demo_Null/article/details/107808924

延伸 · 阅读

精彩推荐