1 Star 0 Fork 0

悟空 / spring-cloud

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
config-eureka.yml 1.01 KB
一键复制 编辑 原始数据 按行查看 历史
悟空 提交于 2020-12-09 14:45 . 3
spring:
profiles:
active: dev
---
server:
port: 7001
# spring的配置
spring:
profiles: dev
application:
name: springCloud-config-eureka
#Eureka配置
eureka:
instance:
hostname: localhost #Eureka服务端的实例名称
client:
register-with-eureka: false #表示是否向Eureka注册中心注册自己
fetch-registry: false # fetch-registry如果为false 则表示自己是注册中心
service-url: #监控页面
defaultZone: http://localhost:7002/eureka/,http://localhost:7003/eureka/
---
server:
port: 7001
# spring的配置
spring:
profiles: test
application:
name: springCloud-config-eureka
#Eureka配置
eureka:
instance:
hostname: localhost #Eureka服务端的实例名称
client:
register-with-eureka: false #表示是否向Eureka注册中心注册自己
fetch-registry: false # fetch-registry如果为false 则表示自己是注册中心
service-url: #监控页面
defaultZone: http://localhost:7002/eureka/,http://localhost:7003/eureka/
Java
1
https://gitee.com/wei11230818/spring-cloud.git
git@gitee.com:wei11230818/spring-cloud.git
wei11230818
spring-cloud
spring-cloud
master

搜索帮助