From 1eb7fd554c8c45fe34ee47beb159433487d86b9c Mon Sep 17 00:00:00 2001 From: linlihong <747682928@qq.com> Date: Tue, 13 Aug 2024 17:34:15 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pom.xml | 46 +++++++++++++++++++ .../mqconsumer/MqConsumerApplication.java | 13 ++++++ src/main/resources/application.yml | 6 +++ .../MqConsumerApplicationTests.java | 13 ++++++ 4 files changed, 78 insertions(+) create mode 100644 pom.xml create mode 100644 src/main/java/com/cool/mqconsumer/MqConsumerApplication.java create mode 100644 src/main/resources/application.yml create mode 100644 src/test/java/com/cool/mqconsumer/MqConsumerApplicationTests.java diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..48fe4bf --- /dev/null +++ b/pom.xml @@ -0,0 +1,46 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starter-parent + 2.7.17 + + + com.cool + Mq-Consumer + 0.0.1-SNAPSHOT + Mq-Consumer + Mq-Consumer + + + + 1.8 + + + + org.springframework.boot + spring-boot-starter + + + org.springframework.boot + spring-boot-starter-amqp + + + org.springframework.boot + spring-boot-starter-test + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + + diff --git a/src/main/java/com/cool/mqconsumer/MqConsumerApplication.java b/src/main/java/com/cool/mqconsumer/MqConsumerApplication.java new file mode 100644 index 0000000..36a2e2a --- /dev/null +++ b/src/main/java/com/cool/mqconsumer/MqConsumerApplication.java @@ -0,0 +1,13 @@ +package com.cool.mqconsumer; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class MqConsumerApplication { + + public static void main(String[] args) { + SpringApplication.run(MqConsumerApplication.class, args); + } + +} diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml new file mode 100644 index 0000000..3fe2722 --- /dev/null +++ b/src/main/resources/application.yml @@ -0,0 +1,6 @@ +server: + port: 8080 + +spring: + application: + name: Mq-Consumer \ No newline at end of file diff --git a/src/test/java/com/cool/mqconsumer/MqConsumerApplicationTests.java b/src/test/java/com/cool/mqconsumer/MqConsumerApplicationTests.java new file mode 100644 index 0000000..c292c54 --- /dev/null +++ b/src/test/java/com/cool/mqconsumer/MqConsumerApplicationTests.java @@ -0,0 +1,13 @@ +package com.cool.mqconsumer; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +class MqConsumerApplicationTests { + + @Test + void contextLoads() { + } + +}