application.yml 411 B

123456789101112131415161718192021
  1. #端口号
  2. server:
  3. port: 7000
  4. spring:
  5. #数据库参数
  6. datasource:
  7. driver-class-name: com.mysql.cj.jdbc.Driver
  8. url: jdbc:mysql://localhost:3306/2week?characterEncoding=utf8&serverTimezone=GMT%2B8
  9. username: root
  10. password: 212579974
  11. mybatis-plus:
  12. mapper-locations: classpath:/mapper/*.xml
  13. type-aliases-package: com.zhentao.pojo
  14. #日志
  15. logging:
  16. level:
  17. com:
  18. zhentao: debug