SpringBoot的yml配置文件
Posted cppdy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot的yml配置文件相关的知识,希望对你有一定的参考价值。
1、在srcmain esources下创建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
以上是关于SpringBoot的yml配置文件的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot读取配置文件(从classpath/file读取yml/properties文件)