💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## 客户端配置 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 ~~~