12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- spring:
- profiles:
- active: ${activeProfile:local}
- servlet:
- multipart:
- max-file-size: 1000MB
- maxRequestSize: 1000MB
- server:
- port: 8808
- 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: true
- ## 打开/关闭Forest请求日志(默认为 true)
- log-request: true
- ## 打开/关闭Forest响应状态日志(默认为 true)
- log-response-status: true
- ## 打开/关闭Forest响应内容日志(默认为 false)
- log-response-content: true
- ## 请求超时时间,单位为毫秒, 默认值为3000
- timeout: 3000000
- ## 连接超时时间,单位为毫秒, 默认值为2000
- connect-timeout: 3000000
- upload:
- type: oss
- query-path: https://4dkk.4dage.com/
- oss:
- #point: http://oss-cn-shenzhen-internal.aliyuncs.com
- point: http://oss-cn-shenzhen-internal.aliyuncs.com
- key: LTAIUrvuHqj8pvry
- secrey: JLOVl0k8Ke0aaM8nLMMiUAZ3EiiqI4
- bucket: 4dkankan
- small: ?x-oss-process=image/resize,m_fill,h_%s,w_%s
|