application.yml 588 B

12345678910111213141516171819202122232425262728293031
  1. server:
  2. port: 8080
  3. spring:
  4. thymeleaf:
  5. prefix: classpath:/templates/
  6. suffix: .html
  7. datasource:
  8. driver-class-name: com.mysql.jdbc.Driver
  9. url: jdbc:mysql://47.115.47.67:3306/sso
  10. username: root
  11. password: root
  12. redis:
  13. host: 120.78.52.202
  14. port: 6378
  15. jedis:
  16. pool:
  17. max-active: 8
  18. max-wait: -1
  19. max-idle: 8
  20. min-idle: 0
  21. timeout: 5000
  22. database: 1
  23. mybatis:
  24. # 映射文件的位置
  25. mapper-locations: classpath:mapper/*.xml
  26. # 开启驼峰命名法
  27. configuration:
  28. map-underscore-to-camel-case: true