java - 使用 Spring Mvc 的 REST 请求上的 HTTP 400 错误请求

标签 java spring rest

当我调用 REST“Hello world”服务器时,我收到 http 响应 400 错误请求。

我的应用程序像 MVC 应用程序一样使用 Spring。

这是我的 Controller :

@Controller
public class HomeController {

    private static final Logger logger = LoggerFactory.getLogger(HomeController.class);


    @RequestMapping(value = "/hello", method = RequestMethod.POST)
    public @ResponseBody String getHello(@RequestParam("request") String json,
            HttpServletRequest request) {

        return "Hello world";
    }
}

这是我的 web.xml:

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

    <!-- The definition of the Root Spring Container shared by all Servlets and Filters -->
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/spring/root-context.xml</param-value>
    </context-param>

    <!-- Creates the Spring Container shared by all Servlets and Filters -->
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>

    <!-- Processes application requests -->
    <servlet>
        <servlet-name>appServlet</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>appServlet</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>

</web-app>

这是我的 root-context.xml:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

    <!-- Root Context: defines shared resources visible to all other web components -->

</beans>

这是我的 servlet-context.xml:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:p="http://www.springframework.org/schema/p"
    xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd ">

    <mvc:annotation-driven />
    <mvc:resources mapping="/resources/**" location="/resources/" />    
    <context:component-scan base-package="uk.co.dango" />

    <tx:annotation-driven transaction-manager="txnManager"/>

    <context:annotation-config />

    <mvc:default-servlet-handler />

    <mvc:view-controller path="/index" view-name="home"/>

</beans>

我使用 Firefox 的 Rest 客户端发出请求,调用以下 URL:

http://localhost:8080/dango/hello

这是正文:

request={"test"=1}

这是内容类型:

content-type=application/x-javascript

如果我更改 URL 中的任何内容,我会收到 Http 404,因此我知道该 URL 至少是正确的。事实上,我收到了 Http 400。但是我能做些什么来解决这个问题呢?

最佳答案

目前尚不清楚您期望发生什么。这个

@RequestMapping(value = "/hello", method = RequestMethod.POST)
public @ResponseBody String getHello(@RequestParam("request") String json,
        HttpServletRequest request) {

一个@RequestParam需要一个请求参数。请求参数定义为 URL 查询字符串元素或表单提交中的元素。

您正在发送

POST http://localhost:8080/dango/hello
content-type=application/x-javascript

request={"test"=1}

既没有表单提交也没有查询字符串。自 @RequestParamrequired属性设置为 true默认情况下,Spring 响应 400 Bad Request(它找不到为其提供的值)。

JB Nizet建议将您的内容类型更改为

application/x-www-form-urlencoded

表示表单提交。或者在查询字符串中传递参数

http://localhost:8080/dango/hello?request=something

您可能还想查看@RequestBody .

关于java - 使用 Spring Mvc 的 REST 请求上的 HTTP 400 错误请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26702483/

相关文章:

java - 在程序加载之前检查文件

java - 自定义快速设置磁贴在绑定(bind)到 Activity 时保持不可用状态

java - Mono 到 Flux 的 Spring 响应列表

javascript - 通过 javascript 向 REST API 发送 POST 请求

java - 如何在JunitPerf中使用@BeforeClass和@AfterClass?

java - 在 Spring Boot Web 应用程序中运行脚本

java - 添加到 Activemq 队列时如何识别重复消息

rest - HTTP 方法 - POST 与 PATCH 或 PUT - 当用户实际上不打算更新任何内容时

rest - 二郎/OTP : authorization/authentication in RESTful applications

java - Java 静态变量的垃圾收集 - 内存不足