1234567891011121314151617181920212223242526272829303132333435363738 |
- spring:
- profiles:
- active: ${activeProfile:test}
- servlet:
- multipart:
- max-file-size: 1000MB
- maxRequestSize: 1000MB
- server:
- port: 8010
- servlet:
- context-path: /takelook
- tomcat:
- max-http-form-post-size: -1
- logging:
- config: classpath:logback-spring.xml
- mybatis-plus:
- configuration:
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl #开启sql日志
- forest:
- ## 日志总开关,打开/关闭Forest请求/响应日志(默认为 true)
- log-enabled: false
- ## 打开/关闭Forest请求日志(默认为 true)
- log-request: true
- ## 打开/关闭Forest响应状态日志(默认为 true)
- log-response-status: true
- ## 打开/关闭Forest响应内容日志(默认为 false)
- log-response-content: true
- ## 请求超时时间,单位为毫秒, 默认值为3000
- timeout: 3000
- ## 连接超时时间,单位为毫秒, 默认值为2000
- connect-timeout: 3000
|