Browse Source

🚧 spring-boot-demo-mq-rabbitmq 努力ing

pull/1/head
Yangkai.Shen 5 years ago
parent
commit
b8a4bc487a
2 changed files with 35 additions and 1 deletions
  1. +22
    -1
      spring-boot-demo-mq-rabbitmq/pom.xml
  2. +13
    -0
      spring-boot-demo-mq-rabbitmq/src/main/java/com/xkcoding/mq/rabbitmq/SpringBootDemoMqRabbitmqApplication.java

+ 22
- 1
spring-boot-demo-mq-rabbitmq/pom.xml View File

@@ -25,7 +25,12 @@
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-amqp</artifactId>
</dependency>

<dependency>
@@ -33,6 +38,22 @@
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>

<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
</dependency>

<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
</dependencies>

<build>


+ 13
- 0
spring-boot-demo-mq-rabbitmq/src/main/java/com/xkcoding/mq/rabbitmq/SpringBootDemoMqRabbitmqApplication.java View File

@@ -3,6 +3,19 @@ package com.xkcoding.mq.rabbitmq;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

/**
* <p>
* 启动器
* </p>
*
* @package: com.xkcoding.mq.rabbitmq
* @description: 启动器
* @author: yangkai.shen
* @date: Created in 2018-12-29 13:58
* @copyright: Copyright (c) 2018
* @version: V1.0
* @modified: yangkai.shen
*/
@SpringBootApplication
public class SpringBootDemoMqRabbitmqApplication {



Loading…
Cancel
Save