当我打电话给我的REST" Hello world"服务器,我得到一个http响应400 Bad Request。
我的应用程序与Spring一样使用MVC应用程序。
这是我的控制器:
@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.但我能做些什么来解决这个问题?
答案 0 :(得分:1)
目前还不清楚你期望发生什么。这个
@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}
既没有表单提交也没有查询字符串。由于默认情况下@RequestParam
的{{1}}属性设置为required
,因此Spring会以400错误请求进行响应(无法找到为其提供的值)。
如JB Nizet所示,请将您的内容类型更改为
true
表示表单提交。或者在查询字符串
中传递参数application/x-www-form-urlencoded
您可能还想查看http://localhost:8080/dango/hello?request=something
。