MessageBodyReader
,
MessageBodyWriter
) needed for binding
JSON ("application/json") content to and from Java Objects ("POJO"s).
Actual data binding functionality is implemented by ObjectMapper
:
mapper to use can be configured in multiple ways:
setMapper
Provider
that returns XmlMapper
s.
Note that the default mapper instance will be automatically created if
one of explicit configuration methods (like configure
)
is called: if so, Provider-based introspection is NOT used, but the
resulting Mapper is used as configured.
Note that there is also a sub-class -- (JacksonJaxbXMLProvider
) -- that
is configured by default to use both Jackson and JAXB annotations for configuration
(base class when used as-is defaults to using just Jackson annotations)
Modifier and Type | Field and Description |
---|---|
protected Providers | _providers
Injectable context object used to locate configured
instance of |
public static final Annotations[] | BASIC_ANNOTATIONS
Default annotation sets to use, if not explicitly defined during construction: only Jackson annotations are used for the base class. |
Access | Constructor and Description |
---|---|
public | JacksonXMLProvider()
Default constructor, usually used when provider is automatically configured to be used with JAX-RS implementation. |
public | JacksonXMLProvider(Annotations...
Annotation set(s) to use for configuring
data binding annotationsToUse)
|
public | |
public | JacksonXMLProvider(XmlMapper mapper, Annotations[]
Sets of annotations (Jackson, JAXB) that provider should
support annotationsToUse)Constructor to use when a custom mapper (usually components like serializer/deserializer factories that have been configured) is to be used. |
Modifier and Type | Method and Description |
---|---|
protected XMLEndpointConfig | _configForReading(ObjectReader reader, Annotation[] annotations)
Implements abstract com.
|
protected XMLEndpointConfig | _configForWriting(ObjectWriter writer, Annotation[] annotations)
Implements abstract com.
|
protected JsonParser | _createParser(ObjectReader reader, InputStream rawStream)
Overrides com. Overridable helper method called to create a |
public XmlMapper | _locateMapperViaProvider(Class<?>
Class of object being serialized or deserialized;
not checked at this point, since it is assumed that unprocessable
classes have been already weeded out,
but will be passed to type, MediaType ContextResolver as is.Declared media type for the instance to process:
not used by this method,
but will be passed to mediaType)ContextResolver as is.Implements abstract com. Method called to locate |
protected boolean | hasMatchingMediaType(MediaType mediaType)
Implements abstract com. Helper method used to check whether given media type is XML type or sub type. |
public Version | version()
Implements com. Method that will return version information stored in and read from jar that contains this class. |
_providers | back to summary |
---|---|
protected Providers _providers Injectable context object used to locate configured
instance of |
BASIC_ANNOTATIONS | back to summary |
---|---|
public static final Annotations[] BASIC_ANNOTATIONS Default annotation sets to use, if not explicitly defined during construction: only Jackson annotations are used for the base class. Sub-classes can use other settings. |
JacksonXMLProvider | back to summary |
---|---|
public JacksonXMLProvider() Default constructor, usually used when provider is automatically configured to be used with JAX-RS implementation. |
JacksonXMLProvider | back to summary |
---|---|
public JacksonXMLProvider(Annotations... annotationsToUse)
|
JacksonXMLProvider | back to summary |
---|---|
public JacksonXMLProvider(XmlMapper mapper) |
JacksonXMLProvider | back to summary |
---|---|
public JacksonXMLProvider(XmlMapper mapper, Annotations[] annotationsToUse) Constructor to use when a custom mapper (usually components like serializer/deserializer factories that have been configured) is to be used.
|
_configForReading | back to summary |
---|---|
protected XMLEndpointConfig _configForReading(ObjectReader reader, Annotation[] annotations) Implements abstract com.
|
_configForWriting | back to summary |
---|---|
protected XMLEndpointConfig _configForWriting(ObjectWriter writer, Annotation[] annotations) Implements abstract com.
|
_createParser | back to summary |
---|---|
protected JsonParser _createParser(ObjectReader reader, InputStream rawStream) throws IOException Overrides com. Doc from com. Overridable helper method called to create a
|
_locateMapperViaProvider | back to summary |
---|---|
public XmlMapper _locateMapperViaProvider(Class<?> type, MediaType mediaType) Implements abstract com. Method called to locate
|
hasMatchingMediaType | back to summary |
---|---|
protected boolean hasMatchingMediaType(MediaType mediaType) Implements abstract com. Helper method used to check whether given media type
is XML type or sub type.
Current implementation essentially checks to see whether
|
version | back to summary |
---|---|
public Version version() Implements com. Method that will return version information stored in and read from jar that contains this class.
|