资料内容:
本文介绍使用 Springboot3+cloud 2023 进行 Eureka 开发
采用父-module 模块开发
父工程 -pom.xml
<!--配置 springboot的依赖的版本号, 方便 module 进行继承-->
<dependencyManagement>
<dependencies>
<!--增加 springboot的依赖-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>3.2.5</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!--增加 springcloud的依赖-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>2023.0.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>