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

sou*_*bre 2 java eclipse thymeleaf spring-boot

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

在此处输入图片说明

资料夹结构:

在此处输入图片说明

奇怪的是:如果将“ 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);
    }
}
Run Code Online (Sandbox Code Playgroud)

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"; 
    }

}
Run Code Online (Sandbox Code Playgroud)

根据要求,我添加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>
Run Code Online (Sandbox Code Playgroud)

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

Dip*_*oke 10

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

当您运行Spring Boot应用程序(即带有@SpringBootApplication注释的类)时,Spring将仅扫描主类包下方的类。

所以你的声明是这样的

package br.com.SpringApp.SpringApp; 在这个主类中,即SpringAppApplication

package br.com.SpringApp.SpringApp.controller; 控制器的名称,即EventoController和indexControllers

package br.com.SpringApp.SpringApp.model; 您的模特的名字,即Evento

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


小智 6

验证您的 pom.xml 中是否具有正确的 thymeleaf 依赖项:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-thymeleaf</artifactId>      
</dependency>
Run Code Online (Sandbox Code Playgroud)


小智 5

解决方案:如果您使用的@Controller是 Controller 类,那么它将被视为 MVC 控制器类。但是,如果您想要在 RESTFul Web 服务中使用特殊的控制器,那么您可以@Controller与注释一起使用@ResponseBody,也可以直接@RestControllerController类上使用。它对我有用,因为我在使用 RestFul webservices 创建 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"; 
    }

}
Run Code Online (Sandbox Code Playgroud)

或者:

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

@RestController
public class EventoController {

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

}
Run Code Online (Sandbox Code Playgroud)