|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+# 注册中心配置
|
|
|
2
|
+eureka:
|
|
|
3
|
+ client:
|
|
|
4
|
+ service-url:
|
|
|
5
|
+ defaultZone: http://localhost:9001/eureka/
|
|
|
6
|
+ instance:
|
|
|
7
|
+ hostname: 127.0.0.1
|
|
|
8
|
+ prefer-ip-address: true
|
|
|
9
|
+ # 每隔10s发送一次心跳(默认30s)
|
|
|
10
|
+ lease-renewal-interval-in-seconds: 10
|
|
|
11
|
+ # 告知服务端30秒还未收到心跳的话,就将该服务移除列表(默认90s)
|
|
|
12
|
+ lease-expiration-duration-in-seconds: 30
|
|
|
13
|
+ status-page-url: http://${eureka.instance.hostname}:9016/swagger-ui.html
|
|
|
14
|
+spring:
|
|
|
15
|
+ # 数据库配置
|
|
|
16
|
+ datasource:
|
|
|
17
|
+ driver-class-name: com.mysql.jdbc.Driver
|
|
|
18
|
+ url: jdbc:mysql://172.18.93.244:3306/depot_qh?useUnicode=true&characterEncoding=utf-8&useSSL=false
|
|
|
19
|
+ username: root
|
|
|
20
|
+ password: qh_admin@3579
|
|
|
21
|
+ # 缓存配置
|
|
|
22
|
+ session:
|
|
|
23
|
+ store-type: redis
|
|
|
24
|
+ redis:
|
|
|
25
|
+ database: 0
|
|
|
26
|
+ host: 172.18.93.229
|
|
|
27
|
+ port: 6379
|
|
|
28
|
+ password: qh_redis@3579
|
|
|
29
|
+ timeout: 3000ms
|
|
|
30
|
+ jedis:
|
|
|
31
|
+ pool:
|
|
|
32
|
+ max-active: 8
|
|
|
33
|
+ max-wait: -1ms
|
|
|
34
|
+ max-idle: 8
|
|
|
35
|
+ min-idle: 0
|
|
|
36
|
+ #jackson:
|
|
|
37
|
+ #date-format: yyyy-MM-dd
|
|
|
38
|
+ #time-zone: GMT+8
|
|
|
39
|
+ servlet:
|
|
|
40
|
+ multipart:
|
|
|
41
|
+ max-file-size: 10Mb
|
|
|
42
|
+ max-request-size: 10Mb
|
|
|
43
|
+ # 静态资源配置
|
|
|
44
|
+ resources:
|
|
|
45
|
+ static-locations: classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/,file:${web.upload-path}
|
|
|
46
|
+web:
|
|
|
47
|
+ upload-path: /home/qh/depot/depotImg
|
|
|
48
|
+cxf:
|
|
|
49
|
+ path: /profitloss
|