Skip to content

Commit b8a4bc4

Browse files
committed
🚧 spring-boot-demo-mq-rabbitmq 努力ing
1 parent 7ec3504 commit b8a4bc4

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed

spring-boot-demo-mq-rabbitmq/pom.xml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,35 @@
2525
<dependencies>
2626
<dependency>
2727
<groupId>org.springframework.boot</groupId>
28-
<artifactId>spring-boot-starter</artifactId>
28+
<artifactId>spring-boot-starter-web</artifactId>
29+
</dependency>
30+
31+
<dependency>
32+
<groupId>org.springframework.boot</groupId>
33+
<artifactId>spring-boot-starter-amqp</artifactId>
2934
</dependency>
3035

3136
<dependency>
3237
<groupId>org.springframework.boot</groupId>
3338
<artifactId>spring-boot-starter-test</artifactId>
3439
<scope>test</scope>
3540
</dependency>
41+
42+
<dependency>
43+
<groupId>org.projectlombok</groupId>
44+
<artifactId>lombok</artifactId>
45+
<optional>true</optional>
46+
</dependency>
47+
48+
<dependency>
49+
<groupId>cn.hutool</groupId>
50+
<artifactId>hutool-all</artifactId>
51+
</dependency>
52+
53+
<dependency>
54+
<groupId>com.google.guava</groupId>
55+
<artifactId>guava</artifactId>
56+
</dependency>
3657
</dependencies>
3758

3859
<build>

spring-boot-demo-mq-rabbitmq/src/main/java/com/xkcoding/mq/rabbitmq/SpringBootDemoMqRabbitmqApplication.java

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@
33
import org.springframework.boot.SpringApplication;
44
import org.springframework.boot.autoconfigure.SpringBootApplication;
55

6+
/**
7+
* <p>
8+
* 启动器
9+
* </p>
10+
*
11+
* @package: com.xkcoding.mq.rabbitmq
12+
* @description: 启动器
13+
* @author: yangkai.shen
14+
* @date: Created in 2018-12-29 13:58
15+
* @copyright: Copyright (c) 2018
16+
* @version: V1.0
17+
* @modified: yangkai.shen
18+
*/
619
@SpringBootApplication
720
public class SpringBootDemoMqRabbitmqApplication {
821

0 commit comments

Comments
 (0)