HTTP状态404 - 创建springBoot应用程序时未找到
Posted
技术标签:
【中文标题】HTTP状态404 - 创建springBoot应用程序时未找到【英文标题】:HTTP status 404 - Not Found while creating springBoot Application 【发布时间】:2018-05-16 06:25:17 【问题描述】:这是一个 springboot 应用程序。它运行完美但没有得到输出(它在浏览器中显示 HTTP 状态 404 错误)
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>com.exaample.demo</groupId>
<artifactId>SpringBootMaven</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>Maven spring boot project</name>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.9.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
<properties>
<java.version>1.8</java.version>
</properties>
</project>
Springboot 启动类 主要方法
package com.example.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class WebMainMethod
public static void main(String[] args)
SpringApplication.run(WebMainMethod.class, args);
控制器在主类之后加载
**Rest Controller**
package com.example.demo.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HelloController
@RequestMapping("/hello")
public String sayHi()
return "Hi";
网址:http://localhost:8080/hello 输出
【问题讨论】:
能否请您发布完整的服务器启动日志? 我在您的控制台日志中看不到这一行:2017-12-02 12:21:49.266 INFO 18752 --- [restartedMain] swsmmaRequestMappingHandlerMapping : Mapped "[/hello ]" 到..... 。好像您的请求映射未映射 点击控制台日志链接 嘿嘿...我刚刚将 SpringBoot 版本 [1.5.9] 更改为 [1.4.2] RELEASE.. 它正在工作..谢谢你们的努力.. 这很奇怪,因为它适用于我的 Spring Boot 1.5.9 和 JDK 1.8u91。 【参考方案1】:你可以试试这个。 使用 application.properties /yml
更改上下文路径最直接的方法是在 application.properties 中设置属性: server.servlet.context-path=/demoApp
除了将属性文件放在 src/main/resources 中之外,我们还可以将其保存在当前工作目录中(在类路径之外)。 Java 系统属性。
http://localhost:8090/demoApp/hello 了解更多信息。 https://www.baeldung.com/spring-boot-context-path
【讨论】:
【参考方案2】:你的端口8080
似乎有问题。
请更改端口并尝试重新启动您的应用程序。
示例:将以下内容添加到您的 application.properties
文件中
server.port = 8090
然后尝试点击http://localhost:8090/hello
【讨论】:
【参考方案3】:也许您的模板不存在。请指定与返回值映射的模板的文件名。检查这个例子
@Controller
public class HelloWorldController
@RequestMapping("/hello")
public String hello(Model model, @RequestParam(value="name", required=false, defaultValue="World") String name)
String message="You just create Spring Boot Example successfully";
model.addAttribute("name", name);
model.addAttribute("message", message);
return "hello";
从Spring Boot Maven Example Hello World找到这个
【讨论】:
OP 使用@RestController
,而不是 @Controller
,这是有原因的,即返回值是响应的 REST 负载,而不是视图名称。
我也认为是他的错误
OP 发布了所有代码,即一个很好的 MCVE,所以如果 OP 打算将 Hi
返回值作为一个视图,那么 OP 可能会发布这样一个视图。有问题的代码完全可以正常工作(至少对我来说是这样),所以这不是代码问题,而更可能是构建或环境问题。
再查一下,返回方法是字符串而不是其余的响应。很可能,@Controller 是他所需要的。无论如何都停在这里
字符串是有效的 REST 响应。我不需要查找任何内容,因为我已经知道 code in the question works fine 是这样的。【参考方案4】:
无法重现问题。
这不是答案,但我从问题中复制了 3 个文件,并毫无问题地构建和运行代码。然而,我的控制台日志有点不同,包括在下面,这就是我将其发布为答案的原因。
尝试进行干净的构建。也许这会解决问题。
控制台日志
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v1.5.9.RELEASE)
2017-12-02 02:06:19.763 INFO 13268 --- [ main] com.example.demo.WebMainMethod : Starting WebMainMethod on XXXX with PID 13268 (C:\Users\XXXX\SpringBootMaven\target\classes started by Andreas in C:\Users\XXXX\SpringBootMaven)
2017-12-02 02:06:19.765 INFO 13268 --- [ main] com.example.demo.WebMainMethod : No active profile set, falling back to default profiles: default
2017-12-02 02:06:19.794 INFO 13268 --- [ main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@4f51b3e0: startup date [Sat Dec 02 02:06:19 EST 2017]; root of context hierarchy
2017-12-02 02:06:20.631 INFO 13268 --- [ main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2017-12-02 02:06:20.641 INFO 13268 --- [ main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2017-12-02 02:06:20.642 INFO 13268 --- [ main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.23
2017-12-02 02:06:20.751 INFO 13268 --- [ost-startStop-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2017-12-02 02:06:20.751 INFO 13268 --- [ost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 959 ms
2017-12-02 02:06:20.824 INFO 13268 --- [ost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
2017-12-02 02:06:20.826 INFO 13268 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
2017-12-02 02:06:20.827 INFO 13268 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2017-12-02 02:06:20.827 INFO 13268 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2017-12-02 02:06:20.827 INFO 13268 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
2017-12-02 02:06:21.025 INFO 13268 --- [ main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@4f51b3e0: startup date [Sat Dec 02 02:06:19 EST 2017]; root of context hierarchy
2017-12-02 02:06:21.071 INFO 13268 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "[/hello]" onto public java.lang.String com.example.demo.controller.HelloController.sayHi()
2017-12-02 02:06:21.074 INFO 13268 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "[/error]" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
2017-12-02 02:06:21.074 INFO 13268 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "[/error],produces=[text/html]" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
2017-12-02 02:06:21.095 INFO 13268 --- [ main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-12-02 02:06:21.095 INFO 13268 --- [ main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-12-02 02:06:21.119 INFO 13268 --- [ main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2017-12-02 02:06:21.195 INFO 13268 --- [ main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
2017-12-02 02:06:21.271 INFO 13268 --- [ main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
2017-12-02 02:06:21.273 INFO 13268 --- [ main] com.example.demo.WebMainMethod : Started WebMainMethod in 1.908 seconds (JVM running for 2.231)
2017-12-02 02:06:38.426 INFO 13268 --- [nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring FrameworkServlet 'dispatcherServlet'
2017-12-02 02:06:38.426 INFO 13268 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization started
2017-12-02 02:06:38.435 INFO 13268 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization completed in 9 ms
【讨论】:
是tomcat的问题吗? 不,这是 Spring 问题。如果您将您的控制台日志与我的进行比较,您的控制台日志会在Mapping filter: 'characterEncodingFilter'
之后跳过很多,这很奇怪。您正在使用 Java 8 运行,对吗?我正在使用 JDK 1.8u91 运行。【参考方案5】:
您是否创建了一个名为 hi...的 jsp 或 html 页面...检查您的视图...您没有要查看的页面...请创建一个 jsp 并将其放在上面
@RequestMapping("/hello")
public String sayHi(Model model)
model.addAttribute("Hi","Hi")
return "Hi";
jsp页面必须是Hi
【讨论】:
我只想在浏览器上显示喜讯 是的,我知道...spring boot 基于 servlet 概念。因此页面需要查看数据...404 页面意味着他们没有找到页面。所以创建一个查看页面并将我上面的线添加到您的控制器方法..之后您可以在浏览器中查看您的消息....使用 $Hi 将数据检索到浏览器 @NipunVidarshana OP 使用@RestController
,这意味着不会涉及到视图模板解析器,基本上每个@RequestMapping
上都是@ResponseBody
,所以没有模型的意义。 Spring 甚至不会尝试使用 @RestController
查找 jsp/theamleaf/static 文件以上是关于HTTP状态404 - 创建springBoot应用程序时未找到的主要内容,如果未能解决你的问题,请参考以下文章
HTTP 状态 404 - 在 Spring Boot 中调用 url 时未找到
为啥 Spring Boot 中的 REST 控制器返回 HTTP 状态 404 – 未找到