You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.4 KiB
YAML
79 lines
2.4 KiB
YAML
server:
|
|
port: 8285
|
|
spring:
|
|
application:
|
|
name: @artifactId@
|
|
datasource:
|
|
dynamic:
|
|
primary: archive-mysql
|
|
#是否用严格模式,如果启用在味匹配到指定数据源时抛出异常
|
|
strict: false
|
|
datasource:
|
|
# 多数据源
|
|
archive-mysql:
|
|
url: jdbc:log4jdbc:mysql://db.docus.cn:3306/docus_archivefile?autoReconnect=true&allowMultiQueries=true&useSSL=false&useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai
|
|
username: docus
|
|
password: docus702
|
|
driver-class-name: net.sf.log4jdbc.sql.jdbcapi.DriverSpy
|
|
type: com.alibaba.druid.pool.DruidDataSource
|
|
# 初始化配置
|
|
initial-size: 3
|
|
# 最小连接数
|
|
min-idle: 3
|
|
# 最大连接数
|
|
max-active: 15
|
|
# 获取连接超 时时间
|
|
max-wait: 5000
|
|
# 连接有效性检测时间
|
|
time-between-eviction-runs-millis: 90000
|
|
# 最大空闲时间
|
|
min-evictable-idle-time-millis: 1800000
|
|
test-while-idle: true
|
|
test-on-borrow: false
|
|
test-on-return: false
|
|
validation-query: select 1
|
|
|
|
lianzhong-sqlserver:
|
|
# url: jdbc:sqlserver://192.169.2.170:14330;DatabaseName=u_medrecord
|
|
# username: sa
|
|
# password: 17931@Uni
|
|
url: jdbc:sqlserver://127.0.0.1:1433;DatabaseName=u_medrecord
|
|
username: sa
|
|
password: 123456
|
|
driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver
|
|
type: com.alibaba.druid.pool.DruidDataSource
|
|
# 初始化配置
|
|
initial-size: 3
|
|
# 最小连接数
|
|
min-idle: 3
|
|
# 最大连接数
|
|
max-active: 15
|
|
# 获取连接超 时时间
|
|
max-wait: 5000
|
|
# 连接有效性检测时间
|
|
time-between-eviction-runs-millis: 90000
|
|
# 最大空闲时间
|
|
min-evictable-idle-time-millis: 1800000
|
|
test-while-idle: true
|
|
test-on-borrow: false
|
|
test-on-return: false
|
|
validation-query: select 1
|
|
|
|
|
|
|
|
redis:
|
|
host: redis.docus.cn
|
|
password: JSdocus@702
|
|
profiles:
|
|
active: dev
|
|
|
|
mybatis-plus:
|
|
configuration:
|
|
map-underscore-to-camel-case: true
|
|
call-setters-on-nulls: true
|
|
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
|
global-config:
|
|
db-config:
|
|
field-strategy: NOT_EMPTY
|
|
db-type: MYSQL
|