1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| server:
| tomcat:
| uri-encoding: UTF-8
| max-connections: 5000
| max-http-form-post-size: 50MB
| threads:
| max: 2000
| port: 8079
| servlet:
| context-path: /simuserver
|
| spring:
| mvc:
| pathmatch:
| # 解决Knife4j运行报错
| matching-strategy: ant_path_matcher
| application:
| name: simuserver
|
| knife4j:
| # 是否开启
| enabled: true
| # 请求前缀
| pathMapping:
| # 是否开启增强模式
| enable: true
|
|