Spring Boot访问HTML页面报404错误Whitelabel Error Page

Posted 谷哥的小弟

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Boot访问HTML页面报404错误Whitelabel Error Page相关的知识,希望对你有一定的参考价值。


版权声明

  • 本文原创作者:谷哥的小弟
  • 作者博客地址:http://blog.csdn.net/lfdfhl

背景描述

Spring Boot项目在访问一个未使用任何模板技术的纯html页面时报404错误:Whitelabel Error Page。

内如如下:

Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.

Thu Sep 02 18:31:55 CST 2021
There was an unexpected error (type=Not Found, status=404).

图示如下:

解决方案:

在pom.xml中添加Thymeleaf依赖

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

刷新项目后即可正常访问,图示如下:

以上是关于Spring Boot访问HTML页面报404错误Whitelabel Error Page的主要内容,如果未能解决你的问题,请参考以下文章

spring boot 集成shiro,设置好setLoginUrl后,报404

eclipse创建spring boot项目,tomcat启动成功,但http://localhost:8080无法访问报错404解决方案

尝试使用 Thymeleaf 加载 HTML 文件时出现 Spring Boot 404

spring boot入门实例报404问题

springboot启动tomcat成功,但是无法访问 报404错误

springboot启动tomcat成功,但是无法访问,报404错误是怎么回事?