目录讲解
引入依赖 Thymeleaf
<!--thymeleaf-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
注意:如果不引人这个依赖包,html文件应该放在默认加载文件夹里面,
比如resources、static、public这个几个文件夹,才可以访问
同个文件的加载顺序,静态资源文件 Spring Boot 默认会挨个从
默认配置
原文:https://www.cnblogs.com/xeclass/p/12634196.html