我试图用Spring启动制作一个“你好世界”控制器,但GET请求不起作用。我能做些什么来修复这个问题?
我在https://start.spring.io/在我选择的依赖项中
我尝试使用不同的注释,如@GetMap
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”
我有过类似的问题。我建议你从同一个包下的所有东西开始(例如将初始化器移动到com.example.hello),这很可能与项目结构有关。
以下是一篇关于这个问题的文章:
https://www.dev2qa.com/spring-boot-resolve-whitelabel-error-page-example/
从上面的链接引用:
因此,如果在spring boot主类中使用@SpringBootApplication注释,则必须将主类按如下方式放置在根包中,以避免出现白标签错误页面。
该问题与您的项目结构有关,默认情况下,Spring Boot将扫描主应用程序类下面的组件。
在你的情况下,你的主要网站位于package com。实例演示
,您的控制器位于
程序包com。实例你好
。
我建议您将控制器保存在
com下面的新包中。实例演示
软件包,比如com。实例演示。控制器
符合文件中提到的结构。
如果你真的想使用
com。实例你好
软件包,您可能需要添加@ComponentScan(“com.example.hello”)
,这在将来很难实现。
更多信息可以在这里找到。
我试图通过Spring Boot做API webservice,但我得到一个错误”Whitelabel错误页面此应用程序没有 /error的显式映射,所以您将此视为一个回退。 Sun Apr 21 13:42:49发生意外错误(类型=未找到,状态=404)。“没有可用的消息”
因为,对于开发和测试来说,“白标签错误页”是很好的。但在生产过程中,我希望完全隐藏任何异常细节。
我试着运行我简单的“hello world”Spring Boot web应用程序,但它不起作用,我总是看到“白标签错误页面”。 我的控制器 一个pplication.java home.html pom.xml 我做错了什么?我试图改变我的项目结构,玩弄依赖关系,没有任何帮助。有人能启发我吗?
我试图创建一个spring boot starter项目。当我试着运行这个时,我遇到了这个错误。 白标签错误页面 此应用程序没有 /error的显式映射,因此您将此视为后备。 Fri Dec29 14:16:46IST 2017有一个意外的错误(type=未找到,status=404)。/ 我将jsp文件添加到src/web-inf/views中/ 已添加 Springmvc。看法前缀=/WEB-
当我运行spring boot MVC应用程序时,得到以下白标签错误页面。 白标签错误页 此应用程序没有/error的显式映射,因此您将其视为一种后退。 Wed Apr 13 15:45:59 IST 2016出现意外错误(Type=内部服务器错误,Status=500)。循环视图路径[home]:将再次发送回当前处理程序URL[/rewards/web/home]。检查您的ViewResolve