bootstrap.yml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # Tomcat
  2. server:
  3. port: 9221
  4. servlet:
  5. context-path:
  6. # Spring
  7. spring:
  8. application:
  9. # 应用名称
  10. name: jeeplus-flowable
  11. boot:
  12. admin:
  13. client:
  14. url: http://localhost:8989
  15. pro:
  16. # 环境配置 请勿使用dev,规避bug
  17. active: dev
  18. cloud:
  19. nacos:
  20. discovery:
  21. # 服务注册地址
  22. server-addr: 127.0.0.1:8848
  23. # 命名空间
  24. namespace: ${spring.pro.active}
  25. config:
  26. # 配置中心地址
  27. server-addr: 127.0.0.1:8848
  28. # 配置文件格式
  29. file-extension: yml
  30. # 共享配置
  31. shared-configs:
  32. - application.${spring.cloud.nacos.config.file-extension}
  33. # 命名空间
  34. namespace: ${spring.pro.active}
  35. sentinel:
  36. transport:
  37. dashboard: 127.0.0.1:8858
  38. #ribbon的超时时间
  39. ribbon:
  40. ConnectTimeout: 60000 # 连接超时时间(ms)
  41. ReadTimeout: 60000 # 通信超时时间(ms)
  42. hystrix:
  43. command:
  44. default:
  45. execution:
  46. isolation:
  47. thread:
  48. timeoutInMillisecond: 60000 # 熔断超时时长:60000ms
  49. management:
  50. endpoints:
  51. web:
  52. exposure:
  53. include: "*"