application.yml 516 B

1234567891011121314151617181920
  1. server:
  2. port: 8080
  3. spring:
  4. datasource:
  5. driver-class-name: com.mysql.cj.jdbc.Driver
  6. url: jdbc:mysql://localhost:3306/day0509?useSSL=false&serverTimezone=UTC&characterEncoding=UTF-8
  7. username: root
  8. password: root
  9. redis:
  10. host: 127.0.0.1
  11. port: 6379
  12. database: 0
  13. password:
  14. mybatis-plus:
  15. type-aliases-package: cn.zhentao.pojo
  16. configuration:
  17. map-underscore-to-camel-case: true
  18. log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  19. mapper-locations: classpath:mapper/*.xml