1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
| spring: application:
name: mimi
banner: charset: UTF-8 location: classpath:banner.txt
datasource: type: com.alibaba.druid.pool.DruidDataSource url: jdbc:mysql://localhost:3306/testDB?characterEncoding=UTF-8&serverTimezone=UTC driver-class-name: com.mysql.cj.jdbc.Driver username: root password: 123456
mvc: static-path-pattern: /resources/**
resources: static-locations: ["classpath:/static/", "classpath:/public/","classpath:/mapper/"]
thymeleaf: prefix: classpath:/templates mode: HTML cache: false encoding: UTF-8 servlet: content-type: text/html
|