将泽西/杰克逊配置为不使用@XmlElement字段注释进行 JSON 字段命名

2022-09-04 04:24:15

我正在运行泽西岛 REST 服务。代表我的资源的POJO是JAXB(XML)注释的简单Java类(它们是从模式定义生成的 - 所以它们有注释)。

我希望泽西/杰克逊忽略XML注释。我在我的web.xml中进行了此配置(如此处所述):

  <init-param>
    <param-name>com.sun.jersey.api.json.POJOMappingFeature</param-name>
    <param-value>true</param-value>
  </init-param>

我现在预计@XMLElement注释将不再用于 JSON 字段命名策略。

但是看看这个java字段(成员)

@XmlElement(name = "person", required = true)
protected List<Person> persons;

我仍然得到以下JSON表示形式:

....,"person":[{"name":"FooBar", ....... (person without the 's')

所有其他字段仍从@XmlElement注释中获取其 JSON 名称,而不是从 Java 字段名称中获取。

我想实现一个JSON输出,如杰克逊完整数据绑定(POJO)示例中所述。

它在像这样的简单测试中工作正常(使用我的XML注释类):

  ObjectMapper mapper = new ObjectMapper(); 
  mapper.writeValue(System.out, myObject);

但是嵌入在泽西岛,我没有得到预期的JSON输出。

他们在泽西岛的其他配置选项是否为获得“简单”POJO JSON表示形式(因为这最适合必须反序列化JSON结果的客户端)。

谢谢克劳斯

详细的解决方案

(1) 实现一个 for Jacksons,它创建一个不使用注释的对象映射器。ContextResolverObjectMapper

package foo.bar.jackson;

import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.ext.ContextResolver;
import javax.ws.rs.ext.Provider;

import org.codehaus.jackson.map.DeserializationConfig;
import org.codehaus.jackson.map.ObjectMapper;
import org.codehaus.jackson.map.SerializationConfig;

/**
 * Customized {@code ContextResolver} implementation that does not use any
 * annotations to produce/resolve JSON field names.
 */
@Provider
@Produces(MediaType.APPLICATION_JSON)
public class JacksonContextResolver implements ContextResolver<ObjectMapper> {

    private ObjectMapper objectMapper;

    /**
     * Creates a new instance.
     * 
     * @throws Exception
     */
    public JacksonContextResolver() throws Exception {
        this.objectMapper = new ObjectMapper().configure(
                DeserializationConfig.Feature.USE_ANNOTATIONS, false)
                .configure(SerializationConfig.Feature.USE_ANNOTATIONS, false);
        ;
    }

    /**
     * @see javax.ws.rs.ext.ContextResolver#getContext(java.lang.Class)
     */
    public ObjectMapper getContext(Class<?> objectType) {
        return objectMapper;
    }
}

(2) 在您的应用程序中注册 ContextResolver Spring Bean.xml

<bean class="foo.bar.jackson.JacksonContextResolver"/>

答案 1

在较低级别,需要确保 ObjectMapper 不使用 JAXBAnnotationIntrospector,而只使用默认的 JacksonAnnotationIntrospector。我认为您应该能够构造 ObjectMapper(默认情况下不会添加 JAXB 自省函数),并通过标准的 JAX-RS 提供程序机制注册它。这应该覆盖 POJO 映射器功能将以其他方式构造的对象映射器。


答案 2