|
@ -22,65 +22,64 @@ server:
|
|
|
eureka:
|
|
|
client:
|
|
|
healthcheck:
|
|
|
enabled: true #启动监控检查
|
|
|
enabled: false #启动监控检查
|
|
|
serviceUrl:
|
|
|
defaultZone: http://${eureka.server.ip}/eureka/
|
|
|
instance:
|
|
|
#eurika使用IP不使用host
|
|
|
prefer-ip-address: true
|
|
|
#定制化在eurika中显示的名称
|
|
|
##instance-id: ${spring.application.name}:${spring.application.instance_id:${server.port}}
|
|
|
instance-id: ${spring.cloud.client.ipAddress}:${server.port}
|
|
|
leaseRenewalIntervalInSeconds: 30 ##心跳时间 默认30秒 一般不修改
|
|
|
|
|
|
|
|
|
yihu:
|
|
|
admin:
|
|
|
client:
|
|
|
advice:
|
|
|
http: true
|
|
|
prefer-ip-address: false
|
|
|
instance-id: ${spring.cloud.client.ipAddress}:${server.port} #定制化在eureka中显示的名称
|
|
|
#leaseRenewalIntervalInSeconds: 30 #心跳时间 默认30秒 一般不修改
|
|
|
|
|
|
#Actuator
|
|
|
management:
|
|
|
security:
|
|
|
enabled: false
|
|
|
|
|
|
|
|
|
endpoints:
|
|
|
logfile:
|
|
|
enabled: true
|
|
|
|
|
|
|
|
|
---
|
|
|
spring:
|
|
|
profiles: jwdev
|
|
|
|
|
|
yihu:
|
|
|
admin:
|
|
|
client:
|
|
|
advice:
|
|
|
sql: false
|
|
|
http: true
|
|
|
server:
|
|
|
ip: 127.0.0.1
|
|
|
port: 8999
|
|
|
|
|
|
---
|
|
|
#Hystrix
|
|
|
hystrix:
|
|
|
command:
|
|
|
default:
|
|
|
execution:
|
|
|
isolation:
|
|
|
thread:
|
|
|
timeoutInMilliseconds: 305000
|
|
|
|
|
|
#Ribbon
|
|
|
ribbon:
|
|
|
ReadTimeout: 300000
|
|
|
ConnectTimeout: 5000
|
|
|
|
|
|
#Zuul
|
|
|
zuul:
|
|
|
host:
|
|
|
socket-timeout-millis: 300000
|
|
|
connect-timeout-millis: 300000
|
|
|
|
|
|
#Spring
|
|
|
spring:
|
|
|
profiles: jwtest
|
|
|
jmx:
|
|
|
enabled: false
|
|
|
jpa:
|
|
|
database-platform: org.hibernate.dialect.MySQL5Dialect
|
|
|
hibernate.dialect: org.hibernate.dialect.MySQL5Dialect
|
|
|
show-sql: false
|
|
|
|
|
|
#未知
|
|
|
yihu:
|
|
|
admin:
|
|
|
client:
|
|
|
advice:
|
|
|
sql: false
|
|
|
http: true
|
|
|
server:
|
|
|
ip: 127.0.0.1
|
|
|
port: 8999
|
|
|
|
|
|
---
|
|
|
spring:
|
|
|
profiles: jwprod
|
|
|
profiles: jwdev
|
|
|
|
|
|
eureka:
|
|
|
server:
|
|
|
ip: 172.19.103.33:8761
|
|
|
|
|
|
#未知
|
|
|
yihu:
|
|
|
admin:
|
|
|
client:
|