Accessing Jackson Object Mapper in RestEasy

匿名 (未验证) 提交于 2019-12-03 01:52:01

问题:

I've been asked to beautify default Jackson JSON coming out of a RestEasy endpoint. I did some research on Jackson and wrote some standalone code to be able to suppress nulls, customize data formats etc. Now the challenge is injecting this code in RestEasy's JSON serialization.

Judging from the forum posts this is trivial in Spring, however doesn't seem to be the case in RestEasy. I wrote a ContextResolver and configured as resteasy.provider in context params in web.xml (on Tomcat) but that prevents the webapp from loading on Tomcat.

Now I'm trying to extend javax.ws.rs.core.Application and provide a ContextResolver but making no progress. Is this straight forward, has anyone done this? Any help is greatly appreciated.

回答1:

Ok,I figured it out, I was able to do this by writing a custom JacksonJsonProvider based on the Jackson FAQ: JAX-RS.The code is as follows:

@Provider public class QBOJacksonJsonProvider extends JacksonJsonProvider {     public static final String DATE_FORMAT = "yyyy-MM-dd HH:mm:ss";      @Override     public void writeTo(Object value, Class> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap httpHeaders, OutputStream entityStream) throws IOException, WebApplicationException {         Log.info(getClass(), "In custom JSON provider");         //get the Object Mapper         ObjectMapper mapper = locateMapper(type, mediaType);         // Suppress null properties in JSON output         mapper.getSerializationConfig().setSerializationInclusion(org.codehaus.jackson.map.annotate.JsonSerialize.Inclusion.NON_NULL);         // Set human readable date format         SimpleDateFormat sdf = new SimpleDateFormat(DATE_FORMAT);         mapper.getSerializationConfig().setDateFormat(sdf);          super.writeTo(value, type, genericType, annotations, mediaType, httpHeaders, entityStream);     } } 


回答2:

I found a nicer way of modifying the Jackson SerializationConfig - you can intercept the ObjectMapper creation by using a JAX-RS ContextResolver.

@Provider @Produces(Array(MediaType.APPLICATION_JSON)) class JacksonConfig extends ContextResolver[ObjectMapper] {    val mapper = new ObjectMapper()   mapper.getSerializationConfig.setSerializationInclusion(Inclusion.NON_NULL)    def getContext(objectType: Class[_]) = mapper } 

You will need to register with RESTEasy in one of the following ways:

  • Return it as a class or instance from a javax.ws.rs.core.Application implementation
  • List it as a provider with resteasy.providers
  • Let RESTEasy automatically scan for it within your WAR file. See Configuration Guide
  • Manually add it via ResteasyProviderFactory.getInstance().registerProvider(Class) or registerProviderInstance(Object)

Reference: RESTEasy docs

Reference: Nicklas Karlsson on the JBoss forums

Please note that this works with RESTEasy 2.3.2 which ships as a module in JBoss 7.1.1.Final, but does not appear to work with RESTEasy 3.0-beta5.



回答3:

Provider for Jackson ObjectMapper should be standard JAX-RS way of doing this (works with Jersey), so it seems like the way to go with RESTeasy as well.



回答4:

If you're using the Jackson2 provider you need to do something slightly different from the previous answer. This example will pretty-print the output by default

@Provider public class JSONProvider extends ResteasyJackson2Provider {    @Override   public void writeTo(Object value, Class> type, Type genericType, Annotation[]  annotations, MediaType json, MultivaluedMap headers, OutputStream body) throws IOException {      ObjectMapper mapper = locateMapper(type, json);     mapper.enable(SerializationFeature.INDENT_OUTPUT);      super.writeTo(value, type, genericType, annotations, json, headers, body);   }  } 

and to register it in your web-xml, if you don't have autoregister on, add it to your resteasy.providers context-param



回答5:

If you are using the Jackson 2.2.x provider, Resteasy has provided a pretty-printing annotation simliar with the one in JAXB provider:

org.jboss.resteasy.annotations.providers.jackson.Formatted 

Here is an example:

@GET @Produces("application/json") @Path("/formatted/{id}") @Formatted public Product getFormattedProduct() {     return new Product(333, "robot"); } 

As the example shown above, the @Formatted annotation will enable the underlying Jackson option "SerializationFeature.INDENT_OUTPUT".

RESTEasy User Guide.

This is not a global solution, but you can put the annotation on classes too.



标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!