Commit a03aab347c15db3a751199ad994e901804008084
1 parent
284049ea
fix: update file
Showing
2 changed files
with
19 additions
and
1 deletions
docker-compose.yml
| @@ -18,7 +18,7 @@ services: | @@ -18,7 +18,7 @@ services: | ||
| 18 | - mysql-server | 18 | - mysql-server |
| 19 | restart: on-failure | 19 | restart: on-failure |
| 20 | ports: | 20 | ports: |
| 21 | - - 8080:8080 | 21 | + - 8100-8100:8110-8110 |
| 22 | 22 | ||
| 23 | mysql-server: | 23 | mysql-server: |
| 24 | container_name: mysql-server | 24 | container_name: mysql-server |
ruoyi-admin/src/main/resources/application-druid-uat.yml
| @@ -116,6 +116,24 @@ ruoyi: | @@ -116,6 +116,24 @@ ruoyi: | ||
| 116 | addressEnabled: false | 116 | addressEnabled: false |
| 117 | # 验证码类型 math 数字计算 char 字符验证 | 117 | # 验证码类型 math 数字计算 char 字符验证 |
| 118 | captchaType: math | 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 | mybatis-plus: | 137 | mybatis-plus: |
| 120 | # 搜索指定包别名 | 138 | # 搜索指定包别名 |
| 121 | typeAliasesPackage: com.ruoyi.**.domain | 139 | typeAliasesPackage: com.ruoyi.**.domain |