繁体   English   中英

如何在Wildfly中配置Jackson?

[英]How to configure Jackson in Wildfly?

我有一个使用以下方法的会话Bean:

@POST
@Consumes("application/x-www-form-urlencoded")
@Path("/calculate")
@Produces("application/json")
public CalculationResult calculate(@FormParam("childProfile") String childProfile,
        @FormParam("parentProfile") String parentProfile) {
...
}

返回的CalculationResult无法映射到JSON,并发生以下异常:

Caused by: com.fasterxml.jackson.databind.JsonMappingException: No serializer found for class com.test.UniqueName and no properties discovered to create BeanSerializer (to avoid exception, disable SerializationFeature.FAIL_ON_EMPTY_BEANS)...

如何在Wildfly中配置Jackson及其SerializationFeature

“我怎样才能在Wildfly中配置Jackson及其SerializationFeature?”

您不需要在Wildfly中配置它,您可以在JAX-RS应用程序中对其进行配置。 只需使用ContextResolver配置ObjectMapper (请参阅此处 )。 就像是

@Provider
public class ObjectMapperContextResolver implements ContextResolver<ObjectMapper> {

    private final ObjectMapper mapper;

    public ObjectMapperContextResolver() {
        mapper = new ObjectMapper();
        mapper.disable(SerializationFeature.FAIL_ON_EMPTY_BEANS);
    }

    @Override
    public ObjectMapper getContext(Class<?> type) {
        return mapper;
    }

}

如果您还没有Jackson依赖项,则需要它,就像编译时依赖项一样

<dependency>
    <groupId>org.jboss.resteasy</groupId>
    <artifactId>resteasy-jackson-provider</artifactId>
    <version>3.0.8.Final</version>
    <scope>provided</scope>
</dependency>

如果您使用扫描来发现资源类和提供程序类,则应自动发现ContextResolver 如果您明确注册了所有资源和提供程序,那么您还需要注册此资源和提供程序。 它应该注册为单身人士。


UPDATE

正如@KozProv在评论中提到的那样,它实际上应该是resteasy-jackson2-provider作为Maven依赖项的artifactId。 -jackson-使用较旧的org.codehaus (Jackson 1.x),而-jackson2-使用新的com.fasterxml (Jackson 2.x)。 Wildfly默认使用The Jackson 2版本。

Wildfly 9

的pom.xml

<dependency>
    <groupId>org.jboss.resteasy</groupId>
    <artifactId>resteasy-jackson2-provider</artifactId>
    <version>3.0.8.Final</version>
    <scope>provided</scope>
</dependency>

Java类

@com.fasterxml.jackson.annotation.JsonIgnoreProperties(ignoreUnknown = true)
public class SomePojo implements Serializable {
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM