1 Star 0 Fork 0

大猫/springcloud-config

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
config-client.yml 1.34 KB
一键复制 编辑 原始数据 按行查看 历史
大猫 提交于 2023-11-01 09:00 . first commit
spring:
profiles:
active: dev
---
server:
port: 1111
spring:
profiles: dev
application:
# # 服务名称
name: config-client-service
# 注册到eureka中,作为eureka的客户端
eureka:
client:
name: config-client-service
service-url:
defaultZone: http://192.168.31.111:8761/eureka
# 服务的拉取,默认true,可以不写
fetch-registry: true
# 服务的注册,默认true,可以不写
register-with-eureka: true
---
server:
port: 2222
spring:
profiles: test
application:
# # 服务名称
name: config-client-service
# 注册到eureka中,作为eureka的客户端
eureka:
client:
name: config-client-service
service-url:
defaultZone: http://192.168.31.111:8762/eureka
# 服务的拉取,默认true,可以不写
fetch-registry: true
# 服务的注册,默认true,可以不写
register-with-eureka: true
---
server:
port: 3333
spring:
profiles: prod
application:
# # 服务名称
name: config-client-service
# 注册到eureka中,作为eureka的客户端
eureka:
client:
name: config-client-service
service-url:
defaultZone: http://192.168.31.111:8763/eureka
# 服务的拉取,默认true,可以不写
fetch-registry: true
# 服务的注册,默认true,可以不写
register-with-eureka: true
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/slliver/springcloud-configs.git
git@gitee.com:slliver/springcloud-configs.git
slliver
springcloud-configs
springcloud-config
master

搜索帮助