Spring Boot Whitelabel错误页面(类型=未找到,状态= 404)

时间:2018-02-28 16:28:50

标签: java eclipse spring-boot thymeleaf

下午好! 我正在开始春季学习,我正在以相同的方式学习教程,但它返回一个错误:

enter image description here

文件夹结构:

enter image description here

奇怪的是: 如果我将“EventoController.java”插入到br.com.SpringApp.SpringApp中,它可以正常工作。

package br.com.SpringApp.SpringApp;

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

@SpringBootApplication
public class SpringAppApplication {

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

package br.com.SpringApp.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class EventoController {

    @RequestMapping("/cadastroEvento")
    public String form() {      
        return "evento/formEvento"; 
    }

}

根据要求,我正在添加pom.xml

   <?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>

    <groupId>br.com.SpringApp</groupId>
    <artifactId>SpringApp</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>SpringApp</name>
    <description>Demo project for Spring Boot</description>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.5.10.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <java.version>1.8</java.version>
    </properties>

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

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <scope>runtime</scope>
        </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>

有人可以告诉我哪里错了吗?

5 个答案:

答案 0 :(得分:6)

确保您的主类位于其他类之上的根包中。

当您运行Spring Boot Application(即使用@SpringBootApplication注释的类)时,Spring将只扫描主类包下面的类。

所以你的声明就像这样

<强> package br.com.SpringApp.SpringApp;    在这个主类里面,即SpringAppApplication

<强> package br.com.SpringApp.SpringApp.controller;    控制器的名称,即EventoController&amp; indexControllers

<强> package br.com.SpringApp.SpringApp.model;    您的模型名称,即Evento

之后 清理项目并重新运行spring boot应用程序;

答案 1 :(得分:1)

验证你的pom.xml中是否有正确的百万富翁依赖:

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

答案 2 :(得分:0)

正如Deepak回答的那样,主类应该位于其他包之上的根包中。 但是,如果您不想这样做,则可以使用:

@SpringBootApplication(scanBasePackages = {"com.other.packages","com.other"})
public class SpringAppApplication {
.....
}

答案 3 :(得分:0)

解决方案: 如果在Controller类上使用@Controller,则它将被视为MVC控制器类。但是,如果要在RESTFul Web服务中使用特殊的控制器,则可以将@Controller@ResponseBody批注一起使用,也可以在@RestController类上直接使用Controller。它对我有用,因为在使用RestFul Web服务创建SpringBoot项目时遇到相同的错误。

package br.com.SpringApp.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class EventoController {

    @RequestMapping("/cadastroEvento")
    @ResponseBody
    public String form() {      
        return "evento/formEvento"; 
    }

}

或:

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

@RestController
public class EventoController {

    @RequestMapping("/cadastroEvento")
    public String form() {      
        return "evento/formEvento"; 
    }

}

答案 4 :(得分:0)

作为SpringBoot的初学者,由于某些原因,任何人都可能至少一次发生此错误。

  1. Application类(例如:SpringAppApplication.java)应该位于根级别,并且控制器类可以位于同一级别下,也可以位于子目录中。应使用@SpringBootApplicationextends SpringBootApplication
  2. 表示此应用程序类
  3. 您可能会错过控制器类顶部的@RestController注释。
  4. 或者可以错过映射注释。(@PostMapping("/save")@GetMapping("/id")等)
  5. 最后只要检查您是否输入了正确的请求映射地址(URL),您可能会错过斜杠或@RequestMapping("/customer")(如果控制器类中有注释)或URL中的拼写错误。