12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- server:
- port: 8088
- spring:
- datasource:
- dynamic:
- primary: mbs
- datasource:
- mbs:
- url: jdbc:mysql://localhost:1230/item-management?autoReconnect=true&useUnicode=true&zeroDateTimeBehavior=CONVERT_TO_NULL&useSSL=false&serverTimezone=Asia/Shanghai&allowMultiQueries=true&characterEncoding=UTF-8&nullCatalogMeansCurrent=true&rewriteBatchedStatements=true
- driver-class-name: com.mysql.cj.jdbc.Driver
- username: root
- password: Dypg@1996
- initialSize: 10 #初始化连接数D
- minIdle: 10 #最小空闲连接数
- max-active: 100 #最大连接数
- maxWait: 60000 #最大等待时间ms(获取不到连接后多久超时)
- hikari:
- minimum-idle: 5
- maximum-pool-size: 200
- connection-timeout: 30000
- idle-timeout: 600000
- max-lifetime: 1800000
- dyoa:
- url: jdbc:mysql://192.168.0.7:3306/p_dyoa?autoReconnect=true&useUnicode=true&zeroDateTimeBehavior=CONVERT_TO_NULL&useSSL=false&serverTimezone=Asia/Shanghai&allowMultiQueries=true&characterEncoding=UTF-8&nullCatalogMeansCurrent=true&rewriteBatchedStatements=true
- driver-class-name: com.mysql.cj.jdbc.Driver
- username: mbs
- password: Dypg@1996
- initialSize: 10 #初始化连接数D
- minIdle: 10 #最小空闲连接数
- max-active: 100 #最大连接数
- maxWait: 60000 #最大等待时间ms(获取不到连接后多久超时)
- hikari:
- minimum-idle: 5
- maximum-pool-size: 200
- connection-timeout: 30000
- idle-timeout: 600000
- max-lifetime: 1800000
- dydb:
- url: jdbc:mysql://192.168.0.8:3306/p_dydb?autoReconnect=true&useUnicode=true&zeroDateTimeBehavior=CONVERT_TO_NULL&useSSL=false&serverTimezone=Asia/Shanghai&allowMultiQueries=true&characterEncoding=UTF-8&nullCatalogMeansCurrent=true&rewriteBatchedStatements=true
- driver-class-name: com.mysql.cj.jdbc.Driver
- username: test
- password: test
- initialSize: 10 #初始化连接数D
- minIdle: 10 #最小空闲连接数
- max-active: 100 #最大连接数
- maxWait: 60000 #最大等待时间ms(获取不到连接后多久超时)
- hikari:
- minimum-idle: 5
- maximum-pool-size: 200
- connection-timeout: 30000
- idle-timeout: 600000
- max-lifetime: 1800000
- dfs:
- path: /opt/dfs
- domain: /dfs
- domainName: http://mbs.scdayou.com/dfs
- code: /code
- domainRoot: http://mbs.scdayou.com/admin
- luceneDir: /luceneDir
- #系统配置
- system:
- login:
- error-limit:
- lock-time: 30 #登录错误达到限制次数账号锁定时间(单位:分钟),默认30分钟
- #百度编辑器
- ueditor:
- uploadPath: ${dfs.path}
- urlPrefix: replaceurl #动态替换url
- posyspath: /root/pageoffice
|