12345678910111213141516171819202122232425262728293031 |
- # Tomcat
- server:
- tomcat:
- uri-encoding: UTF-8
- max-threads: 1000
- min-spare-threads: 30
- port: 9011
- # context-path: /admin
- # 单位 KB
- max-http-header-size: 100000
- spring:
- dubbo:
- application:
- name: jinyu-sys-provider
- # 环境 dev|test|pro
- profiles:
- active: dev
- # jackson时间格式化
- jackson:
- time-zone: GMT+8
- date-format: yyyy-MM-dd HH:mm:ss
- http:
- multipart:
- max-file-size: 100MB
- max-request-size: 100MB
- enabled: true
|