| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- # 注册中心配置
- eureka:
- client:
- service-url:
- defaultZone: http://localhost:9001/eureka/
- instance:
- hostname: localhost
- prefer-ip-address: true
- # 每隔10s发送一次心跳(默认30s)
- lease-renewal-interval-in-seconds: 10
- # 告知服务端30秒还未收到心跳的话,就将该服务移除列表(默认90s)
- lease-expiration-duration-in-seconds: 30
- status-page-url: http://${eureka.instance.hostname}:${server.port}/swagger-ui.html
- spring:
- # 数据库配置
- datasource:
- driver-class-name: com.mysql.jdbc.Driver
- url: jdbc:mysql://172.18.93.244:3306/depot_qh?useUnicode=true&characterEncoding=utf-8&useSSL=false
- username: root
- password: qh_admin@3579
- # 缓存配置
- session:
- store-type: redis
- redis:
- database: 0
- host: 172.18.93.229
- port: 6379
- password: qh_redis@3579
- timeout: 60000ms
- jedis:
- pool:
- max-active: 8
- max-wait: -1ms
- max-idle: 8
- min-idle: 0
- # 静态资源配置
- resources:
- static-locations: classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/,file:${web.upload-path}
- # jackson:
- # date-format: yyyy-MM-dd
- # time-zone: GMT+8
- web:
- upload-path: /home/qh/depot/depotImg
- cxf:
- path: /quality
- #出入库生成库存接口
- crk-webservice: /Base/webServices/StoreChangeServer?wsdl
- #省平台倒仓审批接口
- report-Url: http://172.16.2.10:88/api
- #给市平台推自检/出库数据的接口
- reportForSPT-Url: http://172.16.0.72:8888
|