SpringBoot中Controller返回html页面问题

在这里插入图片描述在这里插入图片描述
在 application.yml 和 application.properties 里面什么配置都没有的情况下,正常来说通过 http://localhost:8080/fuck 路径是可以访问到fuck.html这个网页的,但我今天突然报错404,找不到fuck这个页面。(请忽略我的文件名和路径)

查了一下,原来是因为我只加了web的依赖而没加 thymeleaf模板引擎 的依赖,加上之后就没问题了

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>

在这里插入图片描述

发布了37 篇原创文章 · 获赞 16 · 访问量 6042

猜你喜欢

转载自blog.csdn.net/qq_44039966/article/details/104211557
今日推荐