如何在Spring框架上修复“ Whitelabel错误页面”-GET请求不起作用

时间:2019-04-03 18:08:59

标签: java spring-boot spring-mvc get spring-restcontroller

我正在尝试使用Spring Boot来创建“ Hello World”控制器,并且GET请求无法正常工作。我该怎么做才能解决此问题?

我在https://start.spring.io/上使用了spring初始值设定项,并在Dependencies中选择了web

我尝试使用@GetMapping等不同的注释

package com.example.hello;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HelloController {

    @RequestMapping("/")
    public String helloWorld() {
        return "Hello World";
    }
}

<?xml version="1.0" encoding="UTF-8"?>
<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>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.3.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.example</groupId>
    <artifactId>demo</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>demo</name>
    <description>Demo project for Spring Boot</description>

    <properties>
        <java.version>1.8</java.version>
    </properties>

    <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>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>

package com.example.demo;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class DemoApplication {

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

}

我希望输出为“ Hello World”,但实际输出为“ Whitelabel Error Page”

2 个答案:

答案 0 :(得分:1)

问题与您的项目结构有关,默认情况下,Spring Boot将扫描主应用程序类下的组件。

在您的情况下,主电源位于package com.example.demo;,而控制器位于package com.example.hello;

我建议您按照documentation中提到的结构,将控制器放在com.example.demo软件包下面的新软件包中,例如com.example.demo.controller

如果您确实要使用com.example.hello软件包,则可能需要添加@ComponentScan("com.example.hello"),将来很难再使用。

更多信息here

答案 1 :(得分:0)

我遇到过类似的问题。 我建议您从同一包下的所有内容开始(例如,将initilizer移动到com.example.hello),这很可能与项目结构有关。

以下是有关该问题的文章:

https://www.dev2qa.com/spring-boot-resolve-whitelabel-error-page-example/

从上面的链接引用:

  

因此,如果您在Spring Boot中使用@SpringBootApplication批注   主类,您必须将主类放在根包中,如下所示   避免出现whitelabel错误页面。