为什么我在运行简单的 Spring Boot 应用程序时总是收到状态为“404”的 Whitelabel 错误页面

问题描述 投票:0回答:7

我的控制器

@Controller
//@RequestMapping("/")
//@ComponentScan("com.spring")
//@EnableAutoConfiguration
public class HomeController {

    @Value("${framework.welcomeMessage}")
    private String message;

    @RequestMapping("/hello")
    String home(ModelMap model) {
        System.out.println("hittin the controller...");
        model.addAttribute("welcomeMessage", "vsdfgfgd");
        return "Hello World!";
    }

    @RequestMapping(value = "/indexPage", method = RequestMethod.GET)
    String index(ModelMap model) {
        System.out.println("hittin the index controller...");
        model.addAttribute("welcomeMessage", message);
        return "welcome";
    }

    @RequestMapping(value = "/indexPageWithModel", method = RequestMethod.GET)
    ModelAndView indexModel(ModelMap model) {
        System.out.println("hittin the indexPageWithModel controller...");
        model.addAttribute("welcomeMessage", message);
        return new ModelAndView("welcome", model);
    }
}

我的JSP(welcome.jsp)位于/WEB-INF/jsp(父文件夹是WebContent)

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Welcome to Spring Boot</title>
</head>

<body>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
Message: ${message}
</body>
</html>

我的pom.xml

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>SpringBootPlay</groupId>
    <artifactId>SpringBootPlay</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.4.0.RELEASE</version>
    </parent>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-tomcat</artifactId>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jstl</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.tomcat.embed</groupId>
            <artifactId>tomcat-embed-jasper</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
        <dependency>
            <groupId>commons-logging</groupId>
            <artifactId>commons-logging</artifactId>
            <version>1.1.3</version>
        </dependency>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-io</artifactId>
            <version>1.3.2</version>
        </dependency>
        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <version>1.2.17</version>
        </dependency>
        <dependency>
            <groupId>com.jcabi</groupId>
            <artifactId>jcabi-log</artifactId>
            <version>0.17</version>
        </dependency>
    </dependencies>
    <properties>
        <java.version>1.8</java.version>
        <start-class>com.spring.play.BootLoader</start-class>
        <main.basedir>${basedir}/../..</main.basedir>
        <m2eclipse.wtp.contextRoot>/</m2eclipse.wtp.contextRoot>
    </properties>
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <useSystemClassLoader>false</useSystemClassLoader>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

我的应用程序初始化程序

@EnableAutoConfiguration
@SpringBootApplication
@ComponentScan({ "com.spring.controller" })
@PropertySources(value = { @PropertySource("classpath:/application.properties") })
public class BootLoader extends SpringBootServletInitializer {

    final static Logger logger = Logger.getLogger(BootLoader.class);

    @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
        return application.sources(BootLoader.class);
    }

    public static void main(String[] args) {
        SpringApplication.run(BootLoader.class, args);
    }
}

我什至在我的 pom.xml 中添加了

thymeleaf
依赖项。还是没用。当我点击
localhost:8080/hello or /indexPage or /indexPageWithModel
时,它总是说

白标错误页面

此应用程序没有 /error 的显式映射,因此您将其视为后备。

2016 年美国东部时间 9 月 21 日星期三 21:34:18 出现意外错误(类型=未找到,状态=404)。 ]/WEB-INF/jsp/welcome.jsp

我的应用程序.属性

spring.mvc.view.prefix: /WEB-INF/jsp/
spring.mvc.view.suffix: .jsp
framework.welcomeMessage=Welcome to Dashboard

请帮助我。谢谢!

java spring jsp spring-mvc spring-boot
7个回答
8
投票

这是几乎所有 Spring Boot 初学者都会面临的最常见错误之一。

解决方案非常简单, - 您的 Bootstrap 类应该知道它应该引用的包或类路径,以便访问组件/控制器。因此,您需要指定如下:-

@ComponentScan(basePackages= {"org.test.controller"})

P.S.-这里的“org.test.controller”是我保存控制器的包的限定名称。


5
投票

我自己想出来了。

当我将动态 Web 项目转换为 Maven 项目时,它没有以这种方式创建文件夹结构

src/main/java

src/main/resources

src/main/webapp

我自己手动创建,并将jsp文件从

WebContent/WEB-INF/jsp
移动到
src/main/webapp/WEB-INF/jsp
,并修改了项目属性中的
Java build path

然后我重新启动

embedded tomcat
并再次尝试。成功了。


3
投票

Whitelabel 错误页面的一般故障排除指南:

为 Spring Web 处理启用跟踪日志记录。添加到您的

application.properties
logging.level.org.springframework.web.*=TRACE

这样您就可以在启动过程中看到您的控制器是否已正确注册。例如,HelloController 具有一个映射的 GET 方法,您应该在日志中看到:

2020-08-20 08:56:55.731 TRACE 19687 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping :
    c.n.g.c.HelloController:
    {GET /hello}: sayHello()

如果您看到记录的控制器方法,则说明它已正确注册。如果没有,请遵循为正确的项目结构提供的其他建议。

如果控制器已正确注册,但您仍然收到白色标签错误页面,则可能意味着以下之一:

  • 您正在使用错误的网址/方法/内容类型调用端点
  • 您的端点发生错误
  • 您没有返回正确的响应(这可能导致 Spring 显示错误页面)

这属于哪一种情况,也应该从生成的日志中揭示出来。狩猎快乐!


2
投票

有时可能会因为缺少@Controller或@RestController注解而发生。

Sample Program With @RestController Annotation


1
投票

导致此类错误的原因是 Bootstrap 类不知道需要查看控制器的位置。

在这种情况下,我们需要指定可以引用的包或类路径

@ComponentScan(basePackages={"com.sample.controller"})
,在我的例子中,我已将包指定为
com.sample.controller


0
投票

我在 SecurityConfiguration 类中添加了

@Configuration
注释,它对我有用。


0
投票

我因完全不同的错误而获得了白标。

简短回答:我总是点击“localhost:8080/Courses”而不是“localhost:8080/courses”。 (注意课程中的大写“C”)

所以,我在 Spring Boot 上做一些课程,当我添加“/course”并返回一堆课程时,它工作正常,过了一段时间我添加了一些更多的方法来使用路径变量,突然 /courses 停止了工作。

这是因为,我使用了一次“localhost:8080/Courses”(大写的C),它被保存在浏览器推荐中。每当我使用“localhost:8080/courses”时,它都会自动更正为“/Courses”,并且很长一段时间都没有注意到它。

© www.soinside.com 2019 - 2024. All rights reserved.