| | |
| | | #端口:http://127.0.0.1:8082/doc.html |
| | | # http://127.0.0.1:8082/doc.html |
| | | server: |
| | | port: 8082 |
| | | servlet: |
| | | # 应用的访问路径 |
| | | context-path: / |
| | | tomcat: |
| | | max-connections: 1000 |
| | | # tomcat的URI编码 |
| | | uri-encoding: UTF-8 |
| | | # tomcat最大线程数,默认为200 |
| | | max-threads: 800 |
| | | # Tomcat启动初始化的线程数,默认值25 |
| | | min-spare-threads: 30 |
| | | |
| | | threads: |
| | | # tomcat最大线程数,默认为200 |
| | | max: 1000 |
| | | # Tomcat启动初始化的线程数,默认值25 |
| | | min-spare: 25 |
| | | |
| | | spring: |
| | | jackson: |
| | |
| | | restart: |
| | | # 热部署开关 |
| | | enabled: true |
| | | |
| | | |
| | | # 日志配置 |
| | | logging: |
| | | config: classpath:logback.xml |
| | | |
| | | #config: classpath:logback.xml |
| | | level: |
| | | com.yssh: info |
| | | org.springframework: error |
| | | |
| | | #MyBatis配置 |
| | | mybatis: |
| | | mapper-locations: classpath:mapping/*.xml |