提交 fcca0986 编写于 作者: C chengshiping

rocketmq 代码初始化

上级 443428e8
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
## MQ篇 ## MQ篇
- 【MQ篇】Spring Boot 整合 RocketMQ 消息队列 - 【MQ篇】Spring Boot 整合 RocketMQ 消息队列 `mingyue-springboot-rocketmq`
- [【MQ篇】Spring Boot Event 观察者设计模式,实现业务解耦](https://blog.csdn.net/csp732171109/article/details/124377254) `mingyue-springboot-event` - [【MQ篇】Spring Boot Event 观察者设计模式,实现业务解耦](https://blog.csdn.net/csp732171109/article/details/124377254) `mingyue-springboot-event`
## 任务篇 ## 任务篇
......
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.6.6</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.csp</groupId>
<artifactId>mingyue-springboot-rocketmq</artifactId>
<version>1.0</version>
<name>mingyue-springboot-rocketmq</name>
<description>mingyue-springboot-rocketmq</description>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<!-- hutool 工具包 -->
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>5.7.22</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>
package com.csp.mingyue.client;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class MingYueSpringbootAdminClientApplication {
public static void main(String[] args) {
SpringApplication.run(MingYueSpringbootAdminClientApplication.class, args);
}
}
app:
author: Strive
spring:
boot:
admin:
client:
url: http://127.0.0.1:9000
To My Love!
-=-=-=-=--=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=-=-=-
__ __ __ __
.*. /~ .~\ /~ ~\ /~ .~\ /~ ~\
*** ' `\/' * ' `\/' *
V ( .*)( . *)
/\|/\ \ Ming . *./ \ Yue . *./
| `\ . . .*/' `\ . . .*/' .*.
| `\ * .*. */' _ _ `\ * .*. */' ***
`\ * */' ( `\/'*) `\ * */' V
`\/' \ */' `\/' /\|/\
`\/' |
--+++==##<<{{******** Ming Yue ********}}>>##==++--
:: Spring Boot :: (${spring-boot.version})
--by ${app.author}
\ No newline at end of file
...@@ -58,6 +58,7 @@ ...@@ -58,6 +58,7 @@
<module>mingyue-springboot-admin-client</module> <module>mingyue-springboot-admin-client</module>
<module>mingyue-springboot-security</module> <module>mingyue-springboot-security</module>
<module>mingyue-springboot-event</module> <module>mingyue-springboot-event</module>
<module>mingyue-springboot-rocketmq</module>
</modules> </modules>
<build> <build>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册