Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- spring:
- # JDBC
- datasource:
- url: jdbc:mysql://202.165.179.86:3306/mallink?characterEncoding=UTF-8&useSSL=false
- username: mallone
- password: m@1l0ne123@#
- type: com.alibaba.druid.pool.DruidDataSource
- driver-class-name: com.mysql.jdbc.Driver
- filters: stat
- maxActive: 20
- initialSize: 1
- maxWait: 60000
- minIdle: 1
- timeBetweenEvictionRunsMillis: 60000
- minEvictableIdleTimeMillis: 300000
- validationQuery: select 'x'
- testWhileIdle: true
- testOnBorrow: false
- testOnReturn: false
- poolPreparedStatements: true
- maxOpenPreparedStatements: 20
- #jackson:
- #date-format: yyyy-MM-dd HH:mm:ss
-
- # REDIS
- redis:
- host: 202.165.179.86
- port: 6789
- password: JGtest123
- timeout: 0
- expire: 1800 #30分钟
- pool:
- max-active: 8
- max-idle: 8
- max-wait: -1
-
- logging:
- level:
- tk.mybatis: debug
- com.simple.mapper: debug
|