其他分享
首页 > 其他分享> > spring boot thymeleaf 不能访问templates目录下的页面问题

spring boot thymeleaf 不能访问templates目录下的页面问题

作者:互联网

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,resources
来源: https://www.cnblogs.com/realzhaijiayu/p/16603063.html