这是展示一个与ActiveMQ服务器交互的简单JMS Spring Boot应用。它还展示配置文件如何用于项目的测试,集成和发布版本。
步骤如下:
1. 创建一个Maven项目,然后创建一个名为jms-spring-application的模块
可以访问 https://spring.io 并让它为您构建一个maven包,这很方便,但在这种情况下我使用Intellj IDE来创建我的项目。这很简单。
2.将Spring Dependencies添加到pom文件
Spring可以通过启动依赖来轻松实现创建spring应用程序所需的内容。
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-activemq</artifactId> <version>2.0.5.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-oxm</artifactId> <version>5.1.0.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>5.1.0.RELEASE</version> </dependency> <dependency>
3.将Snake yaml依赖项添加到pom文件中。
Snake yaml将用于稍后解析资源文件
<dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> <version>1.23</version> </dependency>
4. 创建应用程序文件(Application.java)
@EnableJms @ComponentScan(basePackages = "org.jaysfables") @Configuration @SpringBootApplication public class Application { public static void main(String[] args) { // the WebApplicationType.NONE ensures a webserver does not start new SpringApplicationBuilder(Application.class).web(WebApplicationType.NONE) .run(args); } }
5.创建资源
a. 创建application.yml
b. 创建application.properties
c. 更新pom以使用配置文件
d. 更新pom以获取资源
6.创建JMS接收器(ReceiveCmdJms.java)
7.创建JMS发件人(SendStatusJms.java)
8. 添加测试依赖项
a。添加Junit测试
b。添加ActiveMQ Junit测试
c。添加Spring-Test
9.更新pom以在一个可运行的jar中打包所有依赖项
源码: github