application-db.yml 825 B

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