Commit 777cb329ebfdb193921d97a466c40afb813b82e2
1 parent
ece6f81a
add
Showing
1 changed file
with
16 additions
and
15 deletions
huaheng-wms-core/src/main/resources/application-dev.yml
... | ... | @@ -47,7 +47,7 @@ spring: |
47 | 47 | org: |
48 | 48 | quartz: |
49 | 49 | scheduler: |
50 | - instanceName: dev | |
50 | + instanceName: test | |
51 | 51 | instanceId: AUTO |
52 | 52 | jobStore: |
53 | 53 | class: org.quartz.impl.jdbcjobstore.JobStoreTX |
... | ... | @@ -118,7 +118,7 @@ spring: |
118 | 118 | timeBetweenEvictionRunsMillis: 60000 |
119 | 119 | # 配置一个连接在池中最小生存的时间,单位是毫秒 |
120 | 120 | minEvictableIdleTimeMillis: 300000 |
121 | - validationQuery: SELECT 1 | |
121 | + validationQuery: SELECT 1 FROM DUAL | |
122 | 122 | testWhileIdle: true |
123 | 123 | testOnBorrow: false |
124 | 124 | testOnReturn: false |
... | ... | @@ -131,9 +131,9 @@ spring: |
131 | 131 | connectionProperties: druid.stat.mergeSql\=true;druid.stat.slowSqlMillis\=5000 |
132 | 132 | datasource: |
133 | 133 | master: |
134 | - url: jdbc:mysql://127.0.0.1:3306/wms4?characterEncoding=UTF-8&useUnicode=true&useSSL=false&tinyInt1isBit=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai&rewriteBatchedStatements=true | |
134 | + url: jdbc:mysql://localhost:3306/wms4?characterEncoding=UTF-8&useUnicode=true&useSSL=false&tinyInt1isBit=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai&rewriteBatchedStatements=true | |
135 | 135 | username: root |
136 | - password: 123456 | |
136 | + password: HHsoft123. | |
137 | 137 | driver-class-name: com.mysql.cj.jdbc.Driver |
138 | 138 | # 多数据源配置 |
139 | 139 | # multi-datasource1: |
... | ... | @@ -149,9 +149,9 @@ spring: |
149 | 149 | #redis 配置 |
150 | 150 | redis: |
151 | 151 | database: 0 |
152 | - host: 127.0.0.1 | |
152 | + host: 172.16.29.77 | |
153 | 153 | port: 6379 |
154 | - password: "" | |
154 | + password: 123456 | |
155 | 155 | lettuce: |
156 | 156 | pool: |
157 | 157 | min-idle: 0 #最小等待连接中的数量,设 0 为没有限制 |
... | ... | @@ -196,17 +196,18 @@ jeecg: |
196 | 196 | #webapp文件路径 |
197 | 197 | webapp: /opt/webapp |
198 | 198 | shiro: |
199 | - excludeUrls: /test/jeecgDemo/demo3,/test/jeecgDemo/redisDemo/**,/category/**,/visual/**,/map/**,/jmreport/bigscreen2/**,/sys/getWarehouseByUserCode,/test/test**,/api/**,/sys/cas/client/validateLogin | |
199 | + excludeUrls: /test/jeecgDemo/demo3,/test/jeecgDemo/redisDemo/**,/category/**,/visual/**,/map/**,/jmreport/bigscreen2/**,/sys/getWarehouseByUserCode,/api/**,/sys/cas/client/validateLogin | |
200 | 200 | #阿里云oss存储和大鱼短信秘钥配置 |
201 | 201 | oss: |
202 | 202 | accessKey: ?? |
203 | 203 | secretKey: ?? |
204 | 204 | endpoint: oss-cn-beijing.aliyuncs.com |
205 | 205 | bucketName: jeecgdev |
206 | - # ElasticSearch 6设置 | |
206 | + staticDomain: https://static.jeecg.com | |
207 | + # ElasticSearch 设置 | |
207 | 208 | elasticsearch: |
208 | 209 | cluster-name: jeecg-ES |
209 | - cluster-nodes: 127.0.0.1:9200 | |
210 | + cluster-nodes: 81.70.47.128:9200 | |
210 | 211 | check-enabled: false |
211 | 212 | # 表单设计器配置 |
212 | 213 | desform: |
... | ... | @@ -268,20 +269,20 @@ jeecg: |
268 | 269 | data-type: database |
269 | 270 | #分布式锁配置 |
270 | 271 | redisson: |
271 | - address: 127.0.0.1:6379 | |
272 | - password: | |
272 | + address: 172.16.29.77:6379 | |
273 | + password: 123456 | |
273 | 274 | type: STANDALONE |
274 | 275 | enabled: true |
275 | 276 | #cas单点登录 |
276 | 277 | cas: |
277 | - prefixUrl: http://cas.server.com:8443/cas | |
278 | + prefixUrl: http://172.16.29.77:8443/cas | |
278 | 279 | #Mybatis输出sql日志 |
279 | 280 | logging: |
280 | 281 | level: |
281 | - org.jeecg.common: DEBUG | |
282 | - org.jeecg.modules: DEBUG | |
282 | + org.jeecg.common: INFO | |
283 | 283 | org.jeecg.modules.wms: DEBUG |
284 | - org.jeecg.config.shiro: DEBUG | |
284 | + org.jeecg.config.shiro: INFO | |
285 | + org.jeecg.utils: INFO | |
285 | 286 | #swagger |
286 | 287 | knife4j: |
287 | 288 | #开启增强配置 |
... | ... |