See: Description
Class | Description |
---|---|
AdapterConverter | |
JakartaXmlBindAnnotationIntrospector |
Annotation introspector that uses Jakarta Xml Bind annotations
(nee "JAXB" Annotations") where applicable for jackson-databind to use.
|
JakartaXmlBindAnnotationModule |
Module that can be registered to add support for JAXB annotations.
|
PackageVersion |
Automatically generated from PackageVersion.java.in during
packageVersion-generate execution of maven-replacer-plugin in
pom.xml.
|
Enum | Description |
---|---|
JakartaXmlBindAnnotationModule.Priority |
Enumeration that defines how we use JAXB Annotations: either
as "primary" annotations (before any other already configured
introspector -- most likely default JacksonAnnotationIntrospector) or
as "secondary" annotations (after any other already configured
introspector(s)).
|
Usage is by registering com.fasterxml.jackson.module.JakartaXmlBindAnnotationModule.JaxbAnnotationModule
:
ObjectMapper mapper = new ObjectMapper(); mapper.registerModule(new JaxbAnnotationModule());
Copyright © 2022 FasterXML. All rights reserved.