
正文
SpringBoot的yml配置文件
提示:扫一扫查出行【扫一扫了解最新限行尾号】
复制提示
1、在src\main\resources下创建application.yml配置文件
spring:
datasource:
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql://localhost:3306/test?characterEncoding=UTF-8
username: root
password: root
thymeleaf:
mode: HTML5
encoding: UTF-8
content-type: text/html
name: cppdy123







