application-dev.properties 1.2 KB

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