You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
246 lines
7.1 KiB
246 lines
7.1 KiB
2 years ago
|
spring:
|
||
|
datasource:
|
||
|
type: com.alibaba.druid.pool.DruidDataSource
|
||
|
druid:
|
||
|
driver-class-name: com.mysql.jdbc.Driver
|
||
|
url: jdbc:mysql://mysql-1.itax.local:36000/dxhy_admin?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false
|
||
|
username: jxmanager
|
||
|
password: lRLg^W&dXeqP2i0x
|
||
|
|
||
|
redis:
|
||
|
database: 45
|
||
|
host: redis-1.itax.local
|
||
|
port: 38000
|
||
|
password: q92RBG89bbVdn^2k
|
||
|
lettuce:
|
||
|
pool:
|
||
|
max-idle: 500 # 最大空闲连接
|
||
|
min-idle: 5 # 最小空闲链接
|
||
|
max-active: 1000 # 最大连接数(负数表示没有限制)
|
||
|
max-wait: -1 # 最大阻塞等待时间(负数表示没有限制)
|
||
|
timeout: 6000 #连接超时时间
|
||
|
rabbitmq:
|
||
|
host: rabbitmq-1.itax.local
|
||
|
port: 35000
|
||
|
username: admin
|
||
|
password: Invoice!.rabbitm1
|
||
|
sleuth:
|
||
|
enabled: true
|
||
|
http:
|
||
|
legacy:
|
||
|
enabled: true
|
||
|
|
||
|
|
||
|
##多数据源的配置,
|
||
|
dynamic:
|
||
|
datasource:
|
||
|
basics_basics_read:
|
||
|
driver-class-name: com.mysql.jdbc.Driver
|
||
|
url: jdbc:mysql://mysql-1.itax.local:36000/dxhy_admin?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull
|
||
|
username: jxmanager
|
||
|
password: lRLg^W&dXeqP2i0x
|
||
|
basics_basics_write:
|
||
|
driver-class-name: com.mysql.jdbc.Driver
|
||
|
url: jdbc:mysql://mysql-1.itax.local:36000/dxhy_admin?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull
|
||
|
username: jxmanager
|
||
|
password: lRLg^W&dXeqP2i0x
|
||
|
business_detail_read:
|
||
|
driver-class-name: com.mysql.jdbc.Driver
|
||
|
url: jdbc:mysql://mysql-1.itax.local:36000/dxhy_detail?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull
|
||
|
username: jxmanager
|
||
|
password: lRLg^W&dXeqP2i0x
|
||
|
business_detail_write:
|
||
|
driver-class-name: com.mysql.jdbc.Driver
|
||
|
url: jdbc:mysql://mysql-1.itax.local:36000/dxhy_detail?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull
|
||
|
username: jxmanager
|
||
|
password: lRLg^W&dXeqP2i0x
|
||
|
business_business_read:
|
||
|
driver-class-name: com.mysql.jdbc.Driver
|
||
|
url: jdbc:mysql://mysql-1.itax.local:36000/dxhy_tertiary?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull
|
||
|
username: jxmanager
|
||
|
password: lRLg^W&dXeqP2i0x
|
||
|
business_business_write:
|
||
|
driver-class-name: com.mysql.jdbc.Driver
|
||
|
url: jdbc:mysql://mysql-1.itax.local:36000/dxhy_tertiary?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull
|
||
|
username: jxmanager
|
||
|
password: lRLg^W&dXeqP2i0x
|
||
|
logging:
|
||
|
level:
|
||
|
com.dxhy.helpcenter: DEBUG
|
||
|
file:
|
||
|
path: /data/logs/dxhy-erp/
|
||
|
name: ${logging.file.path}dxhy-erp
|
||
|
|
||
|
|
||
|
data:
|
||
|
initialSize: 10
|
||
|
maxActive: 150
|
||
|
minIdle: -1
|
||
|
maxWait: 60000
|
||
|
timeBetweenEvictionRunsMillis: 60000
|
||
|
minEvictableIdleTimeMillis: 3000000
|
||
|
maxEvictableIdleTimeMillis: 18000000
|
||
|
validationQuery: SELECT 1 FROM DUAL
|
||
|
validationQueryTimeout: -1
|
||
|
testOnBorrow: false
|
||
|
testOnReturn: false
|
||
|
testWhileIdle: true
|
||
|
poolPreparedStatements: false
|
||
|
maxOpenPreparedStatements: -1
|
||
|
sharePreparedStatements: false
|
||
|
|
||
|
#mybatis
|
||
|
mybatis-plus:
|
||
|
mapper-locations: classpath*:/mapper/**/*.xml
|
||
|
#实体扫描,多个package用逗号或者分号分隔
|
||
|
typeAliasesPackage: com.dxhy.erp.*.entity
|
||
|
global-config:
|
||
|
#数据库相关配置
|
||
|
db-config:
|
||
|
#主键类型 AUTO:"数据库ID自增", INPUT:"用户输入ID", ID_WORKER:"全局唯一ID (数字类型唯一ID)", UUID:"全局唯一ID UUID";
|
||
|
id-type: ASSIGN_ID
|
||
|
#字段策略 IGNORED:"忽略判断",NOT_NULL:"非 NULL 判断"),NOT_EMPTY:"非空判断"
|
||
|
field-strategy: NOT_NULL
|
||
|
#驼峰下划线转换
|
||
|
column-underline: true
|
||
|
logic-delete-value: -1
|
||
|
logic-not-delete-value: 0
|
||
|
banner: false
|
||
|
#原生配置
|
||
|
configuration:
|
||
|
map-underscore-to-camel-case: true
|
||
|
cache-enabled: false
|
||
|
call-setters-on-nulls: true
|
||
|
jdbc-type-for-null: 'null'
|
||
|
|
||
|
|
||
|
# 必须配置
|
||
|
feign:
|
||
|
httpclient:
|
||
|
enabled: false
|
||
|
okhttp:
|
||
|
enabled: true
|
||
|
|
||
|
hystrix:
|
||
|
threadpool:
|
||
|
default:
|
||
|
coreSize: 1000 ##并发执行的最大线程数,默认10
|
||
|
maxQueueSize: 1000 ##BlockingQueue的最大队列数
|
||
|
queueSizeRejectionThreshold: 500 ##即使maxQueueSize没有达到,达到queueSizeRejectionThreshold该值后,请求也会被拒绝
|
||
|
command:
|
||
|
default:
|
||
|
execution:
|
||
|
isolation:
|
||
|
thread:
|
||
|
timeoutInMilliseconds: 110000
|
||
|
|
||
|
|
||
|
# 配置swagger
|
||
|
swagger:
|
||
|
enabled: true
|
||
|
base-package: com.dxhy.erp
|
||
|
title: dxhy-erp
|
||
|
version: 3.0
|
||
|
description: 管理后端服务
|
||
|
contact:
|
||
|
name: erp
|
||
|
|
||
|
auth:
|
||
|
serviceId: dxhy-admin
|
||
|
user:
|
||
|
token-header: Authorization
|
||
|
client:
|
||
|
id: dxhy-erp
|
||
|
secret: 123456
|
||
|
token-header: x-client-token
|
||
|
|
||
|
oss:
|
||
|
ossType: FTP
|
||
|
endpointUrl:
|
||
|
accessKeyId:
|
||
|
accessKeySecret:
|
||
|
region:
|
||
|
bucketName:
|
||
|
ftp:
|
||
|
connection:
|
||
|
hostname: sftp-1.itax.local
|
||
|
port: 22
|
||
|
username: sftpadmin
|
||
|
password: Invoice!sftp1min
|
||
|
timeout: 60000
|
||
|
pathPrefix: /data/sftp/jxpt/
|
||
|
localPathDefault: /home/application/tertiary/excelfile/
|
||
|
tempPath: /home/dxhy/data/tertiary/jxfp/pdf/item/
|
||
|
|
||
|
#配置文件加密
|
||
|
jasypt:
|
||
|
encryptor:
|
||
|
password: dxhy
|
||
|
|
||
|
rabbitmq:
|
||
|
prefetchCount: 2 # 个消费者可以fetch的最大消息数量
|
||
|
concurrentConsumers: 2 # 设置并发消费者数量
|
||
|
maxConcurrentConsumers: 10 # 设置最大消费者数量,自动扩展消费者数量关键配置
|
||
|
#艺龙
|
||
|
pro:
|
||
|
yl:
|
||
|
secretKey: b7f65a9d715d3eaa6fdbfe2ee55e91fafb93c001
|
||
|
gfTaxNo: 91110108MA004CPN00
|
||
|
userAccount: e-invoice
|
||
|
userName: e-invoice
|
||
|
company: YL
|
||
|
|
||
|
yb:
|
||
|
orgid: 1
|
||
|
|
||
|
##查验相关
|
||
|
invioceCheck:
|
||
|
secretId: emVuZ3poaXNodWl4aWFuZ211YXBwX3NlY0lk
|
||
|
secretKey: emVuZ3poaXNodWl4aWFuZ211c2VjcmV0X2tleQ==
|
||
|
collectUrl: http://101.124.2.174:8100/rest/invoice/dii
|
||
|
enterpriseCode: JXFPGLPT
|
||
|
version: v1.0
|
||
|
appId: JXFP
|
||
|
interfaceCode: INVOICE.CHECK_ONE
|
||
|
enterprisePermissionFlag: true #是否需要获取数据库企业权限标识 true:是 false:否
|
||
|
gfTaxno: 91110108MA004CPN95
|
||
|
|
||
|
erp:
|
||
|
collectNum: 1000
|
||
|
stateNum: 500
|
||
|
outInvoiceNum: 1000
|
||
|
checkIp: false
|
||
|
|
||
|
reimburse:
|
||
|
checkStatus: true
|
||
|
pool:
|
||
|
collectNum: 1000
|
||
|
stateNum: 1000
|
||
|
imageUrl: http://10.1.2.87:8080/api/core/fileDownService/getFilePath?
|
||
|
|
||
|
TO_EXCEL_APPLY: YL_TO_EXCEL_APPLY
|
||
|
TO_INVOICE_LOG: YL_TO_INVOICE_LOG
|
||
|
TO_INVOICE_STATUS: YL_TO_INVOICE_STATUS
|
||
|
TO_MESSAGE_LOG: YL_TO_MESSAGE_LOG
|
||
|
TO_MSG_EXCEL_APPLY: YL_TO_MSG_EXCEL_APPLY
|
||
|
TO_CUSTOMS_LOG: YF_TO_CUSTOMS_LOG
|
||
|
TO_SALE_COUNT_ITEM: TO_SALE_COUNT_ITEM
|
||
|
db:
|
||
|
YGtaxNo: 91110108MA004CPN95
|
||
|
|
||
|
#艺龙查验定时任务
|
||
|
task:
|
||
|
qsCheckTask:
|
||
|
time: 0 0/5 * * 01 ?
|
||
|
|
||
|
#ofd解析配置
|
||
|
ofd:
|
||
|
eachDir: false #是否开启全路径扫描 true 开启 false 不开启
|
||
|
detail: false # 是否需要明细 true 需要 false 不需要
|
||
|
analysis:
|
||
|
type: local #解析方式 http: 为采用ofd服务解析 local: 采用本地服务进行解析
|
||
|
httpUrl: http://jxfpapi.ele-cloud.com/OFDParse # ofd 服务解析地址
|
||
|
ofdPngUrl: http://jxfpapi.ele-cloud.com/image
|
||
|
ofdPreviewUrl: http://jxfpapi.ele-cloud.com/OFDPreview # ofd 预览地址
|
||
|
|