123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- server.port=21008
- spring.application.name=traced-web
- spring.jackson.date-format=yyyy-MM-dd HH:mm:ss
- spring.jackson.time-zone=GMT+8
- ## upload files setting
- spring.http.multipart.maxFileSize=10Mb
- spring.http.multipart.maxRequestSize=10Mb
- img.location=G:/mt/upload/
- spring.mvc.static-path-pattern=/**
- spring.resources.static-locations=classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,file:${img.location}
- #zuul timeout setting
- zuul.host.connect-timeout-millis=10000
- zuul.host.socket-timeout-millis=10000
- #hystix timeout setting
- feign.hystrix.enabled=true
- #feign调用默认是1000毫秒=1秒 应该设置成更长时间1000 * 60 * 5 = 5分钟 add by six-vision
- hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds=300000
- hystrix.command.default.circuitBreaker.sleepWindowInMilliseconds=300000
- hystrix.command.default.circuitBreaker.forceClosed=true
- #hystrix.command.default.execution.timeout.enabled=false
- #请求处理的超时时间 add by six-vision
- ribbon.ReadTimeout=300000
- ribbon.SocketTimeout=300000
- #请求连接的超时时间 add by six-vision
- ribbon.ConnectTimeout=30000
- # eureka setting
- eureka.instance.hostname=localhost
- eureka.client.service-url.defaultZone=http://127.0.0.1:8761/eureka/
- ###redis配置#########
- spring.redis.database=0
- spring.redis.host=127.0.0.1
- spring.redis.port=6379
- spring.redis.pool.max-idle=8
- spring.redis.pool.min-idle=0
- spring.redis.pool.max-active=10
- spring.redis.pool.max-wait=-1
- spring.redis.timeout=5000
- #wechat setting
- #(一个公众号的appid)
- #wx.mp.appId=wx04d471b59982c6ad
- wx.mp.appId=wx98b14fca082bc468
- #(公众号的appsecret)
- #wx.mp.secret=bd9279851f63af0c67e8bc1ef7e27257
- wx.mp.secret=a06d52b0416ff98ab57eba53ebd44c72
- #(接口配置里的Token值)
- wx.mp.token=123
- #(接口配置里的EncodingAESKey值)
- wx.mp.aesKey=123
- #(获取code的认证回调接口)
- #wx.auth.redirecturl=http://th.jscssui.cn/wxlogin/wap/wechat/doLogin
- #wx.auth.redirecturl=http://wx.h.gyhywa.com/mtsy/wap/wechat/doLogin
- wx.auth.redirecturl=http://wx.z.gyhywa.com/mtsy/wap/wechat/doLogin
- #(认证成功后的跳转地址)
- wx.auth.forwardurl=http://www.hywa.com/index.html?userId=
- #export excel file
- #export.file.excel.path=C:/nginx-1.15.2/html/excelMode/
- export.file.excel.path=G:/mt/excelMode/
- #wlw.address=http://172.16.90.10:81
- wlw.address=http://47.111.224.169:8085
|