Files
shoulder-platform/doc/appConfig/db.yml
2020-11-01 18:03:26 +08:00

90 lines
3.2 KiB
YAML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# mysql 配置模板
# 优先从环境变量里取值
shoulder:
mysql:
ip: 127.0.0.1
port: 3306
driverClassName: com.mysql.cj.jdbc.Driver
database: shoulder_platform
username: root
password: root
database: # 数据库配置请看 DatabaseProperties 类上的注释
bizDatabase: shoulder_base
multiTenantType: SCHEMA
isNotWrite: false
isBlockAttack: false # 是否启用 攻击 SQL 阻断解析器
worker-id: 0
data-center-id: 0
# mysql 通用配置
spring:
datasource:
druid:
username: ${shoulder.mysql.username}
password: ${shoulder.mysql.password}
driver-class-name: ${shoulder.mysql.driverClassName}
url: jdbc:mysql://${shoulder.mysql.ip}:${shoulder.mysql.port}/${shoulder.mysql.database}?serverTimezone=CTT&characterEncoding=utf8&useUnicode=true&useSSL=false&autoReconnect=true&zeroDateTimeBehavior=convertToNull&allowMultiQueries=true
db-type: mysql
initialSize: 10
minIdle: 10
maxActive: 500
max-wait: 60000
pool-prepared-statements: true
max-pool-prepared-statement-per-connection-size: 20
validation-query: SELECT 'x'
test-on-borrow: false
test-on-return: false
test-while-idle: true
time-between-eviction-runs-millis: 60000 #配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒
min-evictable-idle-time-millis: 300000 #配置一个连接在池中最小生存的时间,单位是毫秒
filters: stat,wall
filter:
wall:
enabled: true
config:
commentAllow: true
multiStatementAllow: true
noneBaseStatementAllow: true
web-stat-filter: # WebStatFilter配置说明请参考Druid Wiki配置_配置WebStatFilter
enabled: true
url-pattern: /*
exclusions: "*.js , *.gif ,*.jpg ,*.png ,*.css ,*.ico , /druid/*"
session-stat-max-count: 1000
profile-enable: true
session-stat-enable: false
stat-view-servlet: #展示Druid的统计信息,StatViewServlet的用途包括1.提供监控信息展示的html页面2.提供监控信息的JSON API
enabled: true
url-pattern: /druid/* #根据配置中的url-pattern来访问内置监控页面如果是上面的配置内置监控页面的首页是/druid/index.html例如http://127.0.0.1:9000/druid/index.html
reset-enable: true #允许清空统计数据
login-username: shoulder
login-password: shoulder
jpa:
database: MYSQL
hibernate:
#ddl-auto: update
properties:
hibernate:
dialect: org.hibernate.dialect.MySQL8Dialect
show-sql: true
mybatis-plus:
mapper-locations:
- classpath*:mapper_**/**/*Mapper.xml
#实体扫描多个package用逗号或者分号分隔 todo 修改这里
#typeAliasesPackage:
#typeEnumsPackage:
global-config:
db-config:
id-type: INPUT
insert-strategy: NOT_NULL
update-strategy: NOT_NULL
select-strategy: NOT_EMPTY
configuration:
# 下划线列名自动转驼峰java对象属性名
map-underscore-to-camel-case: true
cache-enabled: false
#配置JdbcTypeForNull, oracle数据库必须配置
jdbc-type-for-null: 'null'