blob: 9c584589ef0158e73c78051d194de6cc82ece9ef [file] [log] [blame]
刘洪青f6b66112018-08-02 15:42:43 +08001server:
2 port: 8080
3
4## logging
5logging:
6 level:
7 root: INFO
8 org.springframework.web: INFO
9 org.springframework.cloud.openfeign: TRACE
10 com.supwisdom.infras.security: DEBUG
11 com.supwisdom.leaveschool: DEBUG
12
13spring:
14 application:
15 name: sample-client
16 thymeleaf:
17 cache: false
18
19feign:
20 client:
21 config:
22 default:
刘洪青8d6ae1e2018-08-02 18:25:56 +080023 connectTimeout: 5000
24 readTimeout: 5000
刘洪青f6b66112018-08-02 15:42:43 +080025 loggerLevel: full
26 hystrix:
27 enabled: true
28
29hystrix:
30 command:
31 default:
32 execution:
33 timeout:
34 enabled: true
35 isolation:
36 thread:
刘洪青8d6ae1e2018-08-02 18:25:56 +080037 timeoutInMilliseconds: 5000
刘洪青f6b66112018-08-02 15:42:43 +080038
39gateway.api.url: http://localhost:5555/api