| server: |
| port: 8080 |
| |
| ## logging |
| logging: |
| level: |
| root: INFO |
| org.springframework.web: INFO |
| org.springframework.cloud.openfeign: TRACE |
| com.supwisdom.infras.security: DEBUG |
| com.supwisdom.leaveschool: DEBUG |
| |
| spring: |
| application: |
| name: sample-client |
| thymeleaf: |
| cache: false |
| |
| feign: |
| client: |
| config: |
| default: |
| connectTimeout: 12000 |
| readTimeout: 12000 |
| loggerLevel: full |
| hystrix: |
| enabled: true |
| |
| hystrix: |
| command: |
| default: |
| execution: |
| timeout: |
| enabled: true |
| isolation: |
| thread: |
| timeoutInMilliseconds: 12000 |
| |
| gateway.api.url: http://localhost:5555 |