企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## 客户端配置 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 ~~~