gpt4 book ai didi

Spring REST 服务不使用 JSON

转载 作者:行者123 更新时间:2023-12-04 05:26:02 26 4
gpt4 key购买 nike

我在使用带有 REST Web 服务的 Jackson 使用 Spring 的内置 JSON 消费时遇到了一些困难。如果我定义以下内容:

...
@RequestMapping(value="/stub")
public void doSomething(@RequestBody User user) {
System.err.println("In method");
...
}

...它永远不会到达方法。我在类路径中有 jackson 。但是,当我手动使用 Jackson 时:

@RequestMapping(value="/stub")
public void doSomething(@RequestBody String user) {
System.err.println("In method");

User newUser = null;

try {
user = URLDecoder.decode(user, "UTF-8");
} catch (UnsupportedEncodingException e1) {...}

try {
newUser = new ObjectMapper().readValue(user, User.class);
} catch (Exception e) {...}
}

... 完美运行。 User 对象使用所有正确的值正确创建,所以我知道 JSON 是正确的。和解码有关系吗?据我所知,Spring 2.5 默认情况下解码是打开的。也许我错过了其他东西,也许是配置步骤。我的 web.xml 如下:

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

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

<servlet-mapping>
<servlet-name>DispatcherServlet</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>

</web-app>

...而我的 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:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:util="http://www.springframework.org/schema/util"
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/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/util
http://www.springframework.org/schema/util/spring-util.xsd">

<import resource="mongo-context.xml"/>

<context:component-scan base-package="com.moonlight42.sampleserver.model" />

<mvc:annotation-driven />

<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
</bean>

<bean id="jsonHttpMessageConverter" class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">
<property name="prefixJson" value="false"/>
<property name="supportedMediaTypes" value="application/json"/>
</bean>

<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
<property name="messageConverters">
<util:list id="beanList">
<ref bean="jsonHttpMessageConverter"/>
</util:list>
</property>
</bean>
</beans>

提前致谢。

最佳答案

我相信如果 Jackson 在类路径中,标签会自动设置 Jackson。无需其他配置。

查看在 RequestMapping 中添加正确的消耗和生成:

@RequestMapping(method = RequestMethod.POST, value = "/stub", consumes = "application/json", produces = "application/json")

这些注解是从 Spring MVC 3.1 项目中提取的。您可能需要用户 header="" 然后是正确的 MVC header 。

我发现版本 3+ 在这个领域有一些巨大的改进。

您可能遇到以下两个问题之一:

  1. 没有找到 jackson
  2. 到您的 Controller 的映射配置不正确

关于Spring REST 服务不使用 JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8322200/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com