Commit a03aab347c15db3a751199ad994e901804008084
1 parent
284049ea
fix: update file
Showing
2 changed files
with
19 additions
and
1 deletions
docker-compose.yml
ruoyi-admin/src/main/resources/application-druid-uat.yml
| ... | ... | @@ -116,6 +116,24 @@ ruoyi: |
| 116 | 116 | addressEnabled: false |
| 117 | 117 | # 验证码类型 math 数字计算 char 字符验证 |
| 118 | 118 | captchaType: math |
| 119 | +# 开发环境配置 | |
| 120 | +server: | |
| 121 | + # 服务器的HTTP端口,默认为8080 | |
| 122 | + port: 8100 | |
| 123 | + servlet: | |
| 124 | + # 应用的访问路径 | |
| 125 | + context-path: / | |
| 126 | + tomcat: | |
| 127 | + # tomcat的URI编码 | |
| 128 | + uri-encoding: UTF-8 | |
| 129 | + # 连接数满后的排队数,默认为100 | |
| 130 | + accept-count: 1000 | |
| 131 | + threads: | |
| 132 | + # tomcat最大线程数,默认为200 | |
| 133 | + max: 800 | |
| 134 | + # Tomcat启动初始化的线程数,默认值10 | |
| 135 | + min-spare: 100 | |
| 136 | + | |
| 119 | 137 | mybatis-plus: |
| 120 | 138 | # 搜索指定包别名 |
| 121 | 139 | typeAliasesPackage: com.ruoyi.**.domain | ... | ... |