application.yml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. ##公共配置
  2. server:
  3. svr-dashboard-port: 9010
  4. web-gateway-port: 8088
  5. svr-base-port: 10020
  6. svr-wlyy-port: 10090
  7. svr-quota-port: 10030
  8. svr-logServer-port: 9411
  9. svr-iot-port: 10050
  10. context-path:
  11. svr-dashboard-context-path: /
  12. svr-web-gateway-context-path: /
  13. svr-base-context-path: /
  14. svr-wlyy-context-path: /
  15. svr-quota-context-path: /
  16. svr-logServer-context-path: /
  17. svr-configurations-context-path: /
  18. svr-iot-context-path: /
  19. #Actuator
  20. management:
  21. security:
  22. enabled: false
  23. #Hystrix
  24. hystrix:
  25. command:
  26. default:
  27. execution:
  28. isolation:
  29. thread:
  30. timeoutInMilliseconds: 610000
  31. #Ribbon
  32. ribbon:
  33. ReadTimeout: 300000
  34. ConnectTimeout: 5000
  35. #Zuul
  36. zuul:
  37. host:
  38. socket-timeout-millis: 300000
  39. connect-timeout-millis: 300000
  40. #Spring
  41. spring:
  42. jmx:
  43. enabled: false
  44. jpa:
  45. database-platform: org.hibernate.dialect.MySQL5Dialect
  46. hibernate.dialect: org.hibernate.dialect.MySQL5Dialect
  47. show-sql: false
  48. mvc:
  49. throw-exception-if-no-handler-found: true
  50. #未知
  51. yihu:
  52. admin:
  53. client:
  54. advice:
  55. http: true
  56. #发现服务
  57. eureka:
  58. client:
  59. healthcheck:
  60. enabled: false #启动监控检查
  61. serviceUrl:
  62. defaultZone: http://jw:jkzl@172.19.103.33:8761/eureka/
  63. instance:
  64. prefer-ip-address: false
  65. instance-id: ${spring.cloud.client.ipAddress}:${server.port}