File tree Expand file tree Collapse file tree 2 files changed +35
-1
lines changed
spring-boot-demo-mq-rabbitmq
src/main/java/com/xkcoding/mq/rabbitmq Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Original file line number Diff line number Diff line change 25
25
<dependencies >
26
26
<dependency >
27
27
<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 >
29
34
</dependency >
30
35
31
36
<dependency >
32
37
<groupId >org.springframework.boot</groupId >
33
38
<artifactId >spring-boot-starter-test</artifactId >
34
39
<scope >test</scope >
35
40
</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 >
36
57
</dependencies >
37
58
38
59
<build >
Original file line number Diff line number Diff line change 3
3
import org .springframework .boot .SpringApplication ;
4
4
import org .springframework .boot .autoconfigure .SpringBootApplication ;
5
5
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
+ */
6
19
@ SpringBootApplication
7
20
public class SpringBootDemoMqRabbitmqApplication {
8
21
You can’t perform that action at this time.
0 commit comments