| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- server:
- port: 9010
- tomcat:
- uri-encoding: utf-8
- # 注册中心配置
- eureka:
- client:
- service-url:
- defaultZone: http://172.16.0.4:9711/eureka/
- instance:
- prefer-ip-address: true
- # 每隔10s发送一次心跳(默认30s)
- lease-renewal-interval-in-seconds: 10
- # 告知服务端30秒还未收到心跳的话,就将该服务移除列表(默认90s)
- lease-expiration-duration-in-seconds: 30
- mybatis:
- config-location: classpath:mybatis/mybatis-config.xml
- spring:
- application:
- name: depot-qualitycheck
- # 数据库配置
- datasource:
- type: com.alibaba.druid.pool.DruidDataSource
- url: jdbc:gbasedbt-sqli://101.36.160.140:19089/depot:INFORMIXSERVER=ol_gbasedbt1210;NEWCODESET=GB18030,GB18030-2000,5488;DB_LOCALE=zh_cn.GB18030-2000;GL_USEGLU=1;IFX_USE_STRENC=true;characterEncoding=utf8;
- username: gbasedbt
- password: cDbK2S0go8
- # url: jdbc:gbasedbt-sqli://111.164.113.172:666/depot:INFORMIXSERVER=gbaseserver;NEWCODESET=GBK,8859-1,819;GL_USEGLU=1;IFX_USE_STRENC=true;characterEncoding=utf8;
- # username: gbasedbt
- # password: GBase123
- driver-class-name: com.gbasedbt.jdbc.IfxDriver
- # 缓存配置
- session:
- store-type: redis
- redis:
- database: 4
- host: 172.16.0.46
- port: 6679
- password: 123456
- timeout: 3000
- jedis:
- pool:
- max-active: 8
- max-wait: -1
- 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/depot/depot-web/apache-tomcat-8.0.53/webapps/ROOT/WEB-INF/classes/static
- cxf:
- path: /quality
- #出入库生成库存接口
- crk-webservice: /Base/webServices/StoreChangeServer?wsdl
- #省平台倒仓审批接口
- report-Url: http://172.16.2.10:88/api
|