SpringBoot找不到html资源的原因

Posted 雨溅残冰

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot找不到html资源的原因相关的知识,希望对你有一定的参考价值。

SpringBoot在写完Controller之后直接启动访问,但是找不到相对应的页面资源,报404错误。

我的Controller编写没有错误,html文件也放在了templates文件夹下,但是为什么找不到资源呢?

我发现我导入的thymeleaf包不对,请不要导入Maven库下的thymeleaf包,在SpringBoot中是不会自动配置的。你要导入的是这个包。

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

导入这个包后,启动,访问正常。

以上是关于SpringBoot找不到html资源的原因的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot启动遇到的找不到spring模块的怪事

控制器类找不到 html 模板

Spring Boot 找不到图片资源

服务器中的站点打开找不到服务器的原因

找不到映像文件中指定的资源类型 GetLastError 1813

带有 Spring Boot 的 Thymeleaf - 找不到静态资产 (CSS)