1 Star 0 Fork 0

刘文博/SpringCloud-demo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
order-dev.yml 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
刘文博 提交于 2022-06-10 12:11 . update order-dev.yml.
server:
port: 8080
spring:
datasource:
url: jdbc:mysql://localhost:3306/cloud_order?useSSL=false
username: root
password: root
driver-class-name: com.mysql.jdbc.Driver
# 注册中心的配置
application:
name: orderservice
cloud:
nacos:
discovery:
server-addr: localhost:8848
#eureka:
# client:
# service-url:
# defaultZone: http://127.0.0.1:10086/eureka
mybatis:
type-aliases-package: cn.itcast.user.pojo
configuration:
map-underscore-to-camel-case: true
logging:
level:
cn.itcast: debug
pattern:
dateformat: MM-dd HH:mm:ss:SSS
# 设置超时时间
hystrix:
command:
default:
execution:
isolation:
thread:
timeoutInMilliseconds: 6000 # 设置超时时间默认是1s
# 熔断器的配置
circuitBreaker:
requestVolumeThreshold: 10
sleepWindowInMilliseconds: 10000
errorThresholdPercentage: 50
ribbon:
ReadTimeout: 2000 # 数据通信超时时长
ConnectTimeout: 500 # 连接超时时长
MaxAutoRetries: 0 # 当前服务器的重试次数
MaxAutoRetriesNextServer: 1 # 重试多少次服务
OkToRetryOnAllOperations: false # 是否对所有的请求方式都重试 如果是false代表只对get请求重试
feign:
hystrix:
enabled: true # 开启Feign的熔断功能
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liu-wenbo7/spring-cloud-demo.git
git@gitee.com:liu-wenbo7/spring-cloud-demo.git
liu-wenbo7
spring-cloud-demo
SpringCloud-demo
master

搜索帮助