| 12345678910111213141516171819202122232425262728 |
- pagehelper.helperDialect=mysql
- pagehelper.reasonable=true
- pagehelper.supportMethodsArguments=true
- pagehelper.params=count=countSql
- spring.datasource.druid.url=jdbc:mysql://localhost:3306/litemall?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC&verifyServerCertificate=false&useSSL=false&allowPublicKeyRetrieval=true
- spring.datasource.druid.driver-class-name=com.mysql.jdbc.Driver
- spring.datasource.druid.username=litemall
- spring.datasource.druid.password=litemall123456
- spring.datasource.druid.initial-size=10
- spring.datasource.druid.max-active=50
- spring.datasource.druid.min-idle=10
- spring.datasource.druid.max-wait=60000
- spring.datasource.druid.pool-prepared-statements=true
- spring.datasource.druid.max-pool-prepared-statement-per-connection-size=20
- spring.datasource.druid.validation-query=SELECT 1 FROM DUAL
- spring.datasource.druid.test-on-borrow=false
- spring.datasource.druid.test-on-return=false
- spring.datasource.druid.test-while-idle=true
- spring.datasource.druid.time-between-eviction-runs-millis=60000
- spring.datasource.druid.filters=stat,wall,log4j
- logging.level.root=ERROR
- logging.level.org.springframework=ERROR
- logging.level.org.mybatis=ERROR
- logging.level.org.linlinjava.litemall.db=ERROR
- logging.level.org.linlinjava.litemall=DEBUG
|