spring: datasource: url: jdbc:mysql://127.0.0.1:3306/test?characterEncoding=UTF-8&serverTimezone=GMT%2b8 username: root password: root driver-class-name: com.mysql.cj.jdbc.Driver thymeleaf: cache: false prefix: classpath:/templates/ suffix: .html encoding: UTF-8 content-type: text/html mode: HTML5 web: resources: static-locations: classpath:/static/ devtools: restart: enabled: true
server: port: 8080
mybatis-plus: mapper-locations: classpath*:/mapper/*.xml type-aliases-package: com.qjm.entity configuration: log-impl: org.apache.ibatis.logging.stdout.StdOutImpl map-underscore-to-camel-case: false
pagehelper: helper-dialect: mysql params: count=countSql reasonable: true support-methods-arguments: true
|