多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
## 客户端配置 1、添加依赖 ~~~ <!-- SpringBoot Admin Client --> <dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-admin-starter-client</artifactId> </dependency> <!-- SpringBoot Actuator --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> ~~~ 2、配置服务端地址 ~~~ spring: application: name: hmall-service-trade boot: admin: client: url: http://localhost:9004 ~~~