12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- server:
- ag-basic-port: 10001
- svr-base-port: 10020
- svr-patient-port: 10021
- svr-internet-hospital-port: 10022
- svr-internet-hospital-entrance-port: 10023
- svr-zipkin-port: 9411
- svr-dashboard-port: 9010
- web-gateway-port: 8088
- svr-wlyy-port: 10090
- svr-quota-port: 10030
- svr-iot-port: 10050
- svr-authentication-port: 10260
- #Actuator
- management:
- security:
- enabled: false
- #Hystrix
- #hystrix:
- # command:
- # default:
- # execution:
- # timeout:
- # enabled: false
- # isolation:
- # thread:
- # timeoutInMilliseconds: 240000
- #Ribbon
- #ribbon:
- # ReadTimeout: 600000
- # ConnectTimeout: 600000
- # MaxAutoRetries: 3
- # MaxAutoRetriesNextServer: 0
- # eureka:
- # enabled: true
- #Zuul serviceid 模式配置zuulhost 无效.启用ribbon
- #zuul:
- # host:
- # socket-timeout-millis: 300000
- # connect-timeout-millis: 300000
- #Spring
- spring:
- jmx:
- enabled: false
- jpa:
- database-platform: org.hibernate.dialect.MySQL5Dialect
- hibernate.dialect: org.hibernate.dialect.MySQL5Dialect
- show-sql: false
- mvc:
- throw-exception-if-no-handler-found: true
- #未知
- yihu:
- admin:
- client:
- advice:
- http: true
- #发现服务
- eureka:
- client:
- healthcheck:
- enabled: false #监控检查
- serviceUrl:
- defaultZone: http://jw:jkzl@127.0.0.1:8761/eureka/
- instance:
- prefer-ip-address: false
- instance-id: ${spring.cloud.client.ipAddress}:${server.port}
|