加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
application-pay-dev.yml 1.11 KB
一键复制 编辑 原始数据 按行查看 历史
18090505655 提交于 2021-07-21 19:16 . 支付配置
eureka:
client: #eureka客户端配置
serviceUrl:
defaultZone: http://peer1:1011/eureka/ #去指定服务端注册
instance:
instance-id: pay-server:1040 #实例ID
prefer-ip-address: true #开启通过Ip注册 页面会显示的格式为user-server:1020
spring:
application:
name: pay-server #集群需要使用相同的项目名
server:
port: 1040
ribbon:
ReadTimeout: 3000 #读取超时时间
ConnectTimeout: 2000 #链接超时时间
MaxAutoRetries: 1 #重试机制:同一台实例最大重试次数
MaxAutoRetriesNextServer: 1 #重试负载均衡其他的实例最大重试次数
OkToRetryOnAllOperations: false #是否所有操作都重试,因为针对post请求如果没做幂等处理可能会造成数据多次添加/修改
eager-load:
enabled: true #开启懒加载
clients: user-server #针对于哪些服务需要懒加载
logging:
level:
cn.itsource: debug
feign:
hystrix:
enabled: true #开启熔断支持
hystrix:
command:
default:
execution:
isolation:
thread:
timeoutInMilliseconds: 5000
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化