1 Star 0 Fork 0

正则吃饺子/springcloud-config-study

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
config-eureka.yml 1.48 KB
一键复制 编辑 原始数据 按行查看 历史
正则吃饺子 提交于 2022-01-07 15:24 . 配置文件;
spring:
profiles:
active: dev
---
#######开发环境
spring:
profiles: dev
application:
name: springcloud-config-eureka
server:
port: 7001
eureka:
instance:
#hostname: localhost 单机版测试
hostname: eureka7001.com #集群版模拟测试
client:
register-with-eureka: false #表示是否向eureka注册中心注册自己
fetch-registry: false #false 表示 自己为注册中心 ###fetch-registry 获取注册表
service-url:
# defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/ # 自定义一个监控注册信息的页面 单机版测试
defaultZone: http://eureka7002.com:7002/eureka/,http://eureka7003.com:7003/eureka/
my:
application:
info: "这是dev环境的eureka"
---
#######测试环境
spring:
profiles: test
application:
name: springcloud-config-eureka
server:
port: 7001
eureka:
instance:
#hostname: localhost 单机版测试
hostname: eureka7001.com #集群版模拟测试
client:
register-with-eureka: false #表示是否向eureka注册中心注册自己
fetch-registry: false #false 表示 自己为注册中心 ###fetch-registry 获取注册表
service-url:
# defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/ # 自定义一个监控注册信息的页面 单机版测试
defaultZone: http://eureka7002.com:7002/eureka/,http://eureka7003.com:7003/eureka/
my:
application:
info: "这是test环境的eureka"
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/slovem619/springcloud-config-study.git
git@gitee.com:slovem619/springcloud-config-study.git
slovem619
springcloud-config-study
springcloud-config-study
master

搜索帮助