|
|
@@ -5,56 +5,7 @@ server:
|
|
5
|
5
|
spring:
|
|
6
|
6
|
application:
|
|
7
|
7
|
name: depot-system
|
|
8
|
|
- datasource:
|
|
9
|
|
- driverClassName: com.mysql.jdbc.Driver
|
|
10
|
|
- url: jdbc:mysql://172.16.0.36:3306/depot_qh?useUnicode=true&characterEncoding=utf-8&useSSL=false
|
|
11
|
|
- username: root
|
|
12
|
|
- password: admin@1234
|
|
13
|
|
- session:
|
|
14
|
|
- store-type: redis
|
|
15
|
|
- redis:
|
|
16
|
|
- database: 0
|
|
17
|
|
- host: 101.36.160.140
|
|
18
|
|
- port: 10316
|
|
19
|
|
- password: admin@1234
|
|
20
|
|
- timeout: 60000ms
|
|
21
|
|
- jedis:
|
|
22
|
|
- pool:
|
|
23
|
|
- # 连接池最大连接数(使用负值表示没有限制)
|
|
24
|
|
- max-active: 16
|
|
25
|
|
- # 连接池最大阻塞等待时间(使用负值表示没有限制)
|
|
26
|
|
- max-wait: -1ms
|
|
27
|
|
- # 连接池中的最大空闲连接
|
|
28
|
|
- max-idle: 16
|
|
29
|
|
- # 连接池中的最小空闲连接
|
|
30
|
|
- min-idle: 0
|
|
31
|
|
- resources:
|
|
32
|
|
- static-locations: classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/,file:${web.upload-path}
|
|
|
8
|
+ profiles:
|
|
|
9
|
+ active: prod
|
|
33
|
10
|
mybatis:
|
|
34
|
|
- config-location: classpath:mybatis/mybatis-config.xml
|
|
35
|
|
-eureka:
|
|
36
|
|
- client:
|
|
37
|
|
- serviceUrl:
|
|
38
|
|
- defaultZone: http://localhost:9001/eureka/
|
|
39
|
|
- instance:
|
|
40
|
|
- # 每隔10s发送一次心跳(默认30s)
|
|
41
|
|
- lease-renewal-interval-in-seconds: 10
|
|
42
|
|
- # 告知服务端30秒还未收到心跳的话,就将该服务移除列表(默认90s)
|
|
43
|
|
- lease-expiration-duration-in-seconds: 30
|
|
44
|
|
- status-page-url: http://localhost:${server.port}/swagger-ui.html
|
|
45
|
|
-#图片地址
|
|
46
|
|
-web:
|
|
47
|
|
- upload-path: D:/depotImg/
|
|
48
|
|
-#设置全局变量判断是云端还是库端;1云端,2本地
|
|
49
|
|
-localOrCloud: 1
|
|
50
|
|
-#设置出入库连接
|
|
51
|
|
-forTheConnection: http://101.36.160.210:9905/Base/Main.action
|
|
52
|
|
-#forTheConnection=http://101.36.160.210:9901/Base/Login.action
|
|
53
|
|
-#登录密码输入错误限制登录时间
|
|
54
|
|
-loginTime: 5
|
|
55
|
|
-
|
|
56
|
|
-#出入库接口参数
|
|
57
|
|
-FLATID: 511100008
|
|
58
|
|
-KEY: 229558d3f8a9e2c67a7661a50487c790
|
|
59
|
|
-#webservice接口地址
|
|
60
|
|
-wsdlUrl: http://10.223.3.62:9025/yhzx/webServices/ExchangeServer?wsdl
|
|
|
11
|
+ config-location: classpath:mybatis/mybatis-config.xml
|