1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- # Tomcat
- server:
- port: 9221
- servlet:
- context-path:
- # Spring
- spring:
- application:
- # 应用名称
- name: jeeplus-flowable
- boot:
- admin:
- client:
- url: http://localhost:8989
- pro:
- # 环境配置 请勿使用dev,规避bug
- active: dev
- cloud:
- nacos:
- discovery:
- # 服务注册地址
- server-addr: 127.0.0.1:8848
- # 命名空间
- namespace: ${spring.pro.active}
- config:
- # 配置中心地址
- server-addr: 127.0.0.1:8848
- # 配置文件格式
- file-extension: yml
- # 共享配置
- shared-configs:
- - application.${spring.cloud.nacos.config.file-extension}
- # 命名空间
- namespace: ${spring.pro.active}
- sentinel:
- transport:
- dashboard: 127.0.0.1:8858
- #ribbon的超时时间
- ribbon:
- ConnectTimeout: 60000 # 连接超时时间(ms)
- ReadTimeout: 60000 # 通信超时时间(ms)
- hystrix:
- command:
- default:
- execution:
- isolation:
- thread:
- timeoutInMillisecond: 60000 # 熔断超时时长:60000ms
- management:
- endpoints:
- web:
- exposure:
- include: "*"
|