| spring: |
| application: |
| name: sample-foo |
| mvc: |
| log-resolved-exception: true |
| |
| infras: |
| mvc: |
| # 自定义error输出的例子 |
| custom-error: |
| enabled: true |
| error-map: |
| org.springframework.validation.BindException: Customized Bind Error Reason |
| include-message: true |
| include-errors: true |
| include-error: true |
| include-exception: true |
| include-path: true |
| include-timestamp: true |
| include-status: true |
| |
| # 控制日志级别的例子 |
| #logging: |
| # level: |
| # org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod: trace |
| # org.springframework.web.servlet.DispatcherServlet: debug |
| |