Class JacksonJaxbJsonProvider

All Implemented Interfaces:
com.fasterxml.jackson.core.Versioned, MessageBodyReader<Object>, MessageBodyWriter<Object>
Direct Known Subclasses:
DefaultJacksonJaxbJsonProvider

@Provider @Consumes("*/*") @Produces("*/*") public class JacksonJaxbJsonProvider extends JacksonJsonProvider
JSON content type provider automatically configured to use both Jackson and JAXB annotations (in that order of priority). Otherwise functionally same as JacksonJsonProvider.

Typical usage pattern is to just instantiate instance of this provider for JAX-RS and use as is: this will use both Jackson and JAXB annotations (with Jackson annotations having priority).

Note: class annotations are duplicated from super class, since it is not clear whether JAX-RS implementations are required to check settings of super-classes. It is important to keep annotations in sync if changed.

  • Field Details

    • DEFAULT_ANNOTATIONS

      public static final Annotations[] DEFAULT_ANNOTATIONS
      Default annotation sets to use, if not explicitly defined during construction: use Jackson annotations if found; if not, use JAXB annotations as fallback.
  • Constructor Details

    • JacksonJaxbJsonProvider

      public JacksonJaxbJsonProvider()
      Default constructor, usually used when provider is automatically configured to be used with JAX-RS implementation.
    • JacksonJaxbJsonProvider

      public JacksonJaxbJsonProvider(Annotations... annotationsToUse)
      Parameters:
      annotationsToUse - Annotation set(s) to use for configuring data binding
    • JacksonJaxbJsonProvider

      public JacksonJaxbJsonProvider(com.fasterxml.jackson.databind.ObjectMapper mapper, Annotations[] annotationsToUse)
      Constructor to use when a custom mapper (usually components like serializer/deserializer factories that have been configured) is to be used.
    • JacksonJaxbJsonProvider

      protected JacksonJaxbJsonProvider(JsonMapperConfigurator configurator)