springboot默认情况下可以直接访问四个目录下的静态文件(https://www.cnblogs.com/realzhaijiayu/p/16566667.html)
public
static
resources
META-INF/resources
引入 thymeleaf 之后才能访问 templates 目录下的静态页面,不能访问的原因是引入的 thymeleaf 的依赖有问题
<dependency> <!--3-->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
<version>2.7.2</version>
</dependency>
标签:templates,spring,boot,访问,thymeleaf,页面
From: https://www.cnblogs.com/realzhaijiayu/p/16603063.html