public class Jaxb2Marshaller extends java.lang.Object implements MimeMarshaller, MimeUnmarshaller, GenericMarshaller, GenericUnmarshaller, BeanClassLoaderAware, InitializingBean
GenericMarshaller
interface for JAXB 2.2.
The typical usage will be to set either the "contextPath" or the "classesToBeBound" property on this bean, possibly customize the marshaller and unmarshaller by setting properties, schemas, adapters, and listeners, and to refer to it.
setContextPath(String)
,
setClassesToBeBound(Class[])
,
setJaxbContextProperties(Map)
,
setMarshallerProperties(Map)
,
setUnmarshallerProperties(Map)
,
setSchema(Resource)
,
setSchemas(Resource[])
,
setMarshallerListener(javax.xml.bind.Marshaller.Listener)
,
setUnmarshallerListener(javax.xml.bind.Unmarshaller.Listener)
,
setAdapters(XmlAdapter[])
Modifier and Type | Field and Description |
---|---|
protected Log |
logger
Logger available to subclasses
|
Constructor and Description |
---|
Jaxb2Marshaller() |
Modifier and Type | Method and Description |
---|---|
void |
afterPropertiesSet()
Invoked by a BeanFactory after it has set all bean properties supplied
(and satisfied BeanFactoryAware and ApplicationContextAware).
|
protected XmlMappingException |
convertJaxbException(JAXBException ex)
Convert the given
JAXBException to an appropriate exception from the
org.springframework.oxm hierarchy. |
protected Marshaller |
createMarshaller()
Return a newly created JAXB marshaller.
|
protected Unmarshaller |
createUnmarshaller()
Return a newly created JAXB unmarshaller.
|
java.lang.Class<?>[] |
getClassesToBeBound()
Return the list of Java classes to be recognized by a newly created JAXBContext.
|
java.lang.String |
getContextPath()
Return the JAXB context path.
|
JAXBContext |
getJaxbContext()
Return the JAXBContext used by this marshaller, lazily building it if necessary.
|
java.lang.String[] |
getPackagesToScan()
Return the packages to search for JAXB2 annotations.
|
protected void |
initJaxbMarshaller(Marshaller marshaller)
Template method that can be overridden by concrete JAXB marshallers for custom initialization behavior.
|
protected void |
initJaxbUnmarshaller(Unmarshaller unmarshaller)
Template method that can be overridden by concrete JAXB marshallers for custom initialization behavior.
|
boolean |
isProcessExternalEntities()
Returns the configured value for whether XML external entities are allowed.
|
boolean |
isSupportDtd()
Whether DTD parsing is supported.
|
void |
marshal(java.lang.Object graph,
javax.xml.transform.Result result)
Marshal the object graph with the given root into the provided
Result . |
void |
marshal(java.lang.Object graph,
javax.xml.transform.Result result,
MimeContainer mimeContainer)
Marshals the object graph with the given root into the provided
Result ,
writing binary data to a MimeContainer . |
void |
setAdapters(XmlAdapter<?,?>... adapters)
Specify the
XmlAdapter s to be registered with the JAXB Marshaller
and Unmarshaller |
void |
setBeanClassLoader(java.lang.ClassLoader classLoader)
Callback that supplies the bean
class loader to
a bean instance. |
void |
setCheckForXmlRootElement(boolean checkForXmlRootElement)
Specify whether the
supports(Class) should check for
@XmlRootElement annotations. |
void |
setClassesToBeBound(java.lang.Class<?>... classesToBeBound)
Set the list of Java classes to be recognized by a newly created JAXBContext.
|
void |
setContextPath(java.lang.String contextPath)
Set a JAXB context path.
|
void |
setContextPaths(java.lang.String... contextPaths)
Set multiple JAXB context paths.
|
void |
setJaxbContextProperties(java.util.Map<java.lang.String,?> jaxbContextProperties)
Set the
JAXBContext properties. |
void |
setLazyInit(boolean lazyInit)
Set whether to lazily initialize the
JAXBContext for this marshaller. |
void |
setMappedClass(java.lang.Class<?> mappedClass)
Specify a JAXB mapped class for partial unmarshalling.
|
void |
setMarshallerListener(Marshaller.Listener marshallerListener)
Specify the
Marshaller.Listener to be registered with the JAXB Marshaller . |
void |
setMarshallerProperties(java.util.Map<java.lang.String,?> properties)
Set the JAXB
Marshaller properties. |
void |
setMtomEnabled(boolean mtomEnabled)
Specify whether MTOM support should be enabled or not.
|
void |
setPackagesToScan(java.lang.String... packagesToScan)
Set the packages to search for classes with JAXB2 annotations in the classpath.
|
void |
setProcessExternalEntities(boolean processExternalEntities)
Indicates whether external XML entities are processed when unmarshalling.
|
void |
setSchema(Resource schemaResource)
Set the schema resource to use for validation.
|
void |
setSchemaLanguage(java.lang.String schemaLanguage)
Set the schema language.
|
void |
setSchemaResourceResolver(org.w3c.dom.ls.LSResourceResolver schemaResourceResolver)
Set the resource resolver, as used to load the schema resources.
|
void |
setSchemas(Resource... schemaResources)
Set the schema resources to use for validation.
|
void |
setSupportDtd(boolean supportDtd)
Indicates whether DTD parsing should be supported.
|
void |
setSupportJaxbElementClass(boolean supportJaxbElementClass)
|
void |
setUnmarshallerListener(Unmarshaller.Listener unmarshallerListener)
Set the
Unmarshaller.Listener to be registered with the JAXB Unmarshaller . |
void |
setUnmarshallerProperties(java.util.Map<java.lang.String,?> properties)
Set the JAXB
Unmarshaller properties. |
void |
setValidationEventHandler(ValidationEventHandler validationEventHandler)
Set the JAXB validation event handler.
|
boolean |
supports(java.lang.Class<?> clazz)
Indicate whether this marshaller can marshal instances of the supplied type.
|
boolean |
supports(java.lang.reflect.Type genericType)
Indicates whether this marshaller can marshal instances of the supplied generic type.
|
java.lang.Object |
unmarshal(javax.xml.transform.Source source)
Unmarshal the given
Source into an object graph. |
java.lang.Object |
unmarshal(javax.xml.transform.Source source,
MimeContainer mimeContainer)
Unmarshals the given provided
Source into an object graph,
reading binary attachments from a MimeContainer . |
protected java.lang.Object |
unmarshalStaxSource(Unmarshaller jaxbUnmarshaller,
javax.xml.transform.Source staxSource) |
protected final Log logger
public void setContextPaths(java.lang.String... contextPaths)
public void setContextPath(@Nullable java.lang.String contextPath)
Setting either this property, "classesToBeBound"
or "packagesToScan"
is required.
@Nullable public java.lang.String getContextPath()
public void setClassesToBeBound(@Nullable java.lang.Class<?>... classesToBeBound)
Setting either this property, "contextPath"
or "packagesToScan"
is required.
@Nullable public java.lang.Class<?>[] getClassesToBeBound()
public void setPackagesToScan(@Nullable java.lang.String... packagesToScan)
ClassPathBeanDefinitionScanner
).
Setting either this property, "contextPath"
or "classesToBeBound"
is required.
@Nullable public java.lang.String[] getPackagesToScan()
public void setJaxbContextProperties(java.util.Map<java.lang.String,?> jaxbContextProperties)
JAXBContext
properties. These implementation-specific
properties will be set on the underlying JAXBContext
.public void setMarshallerProperties(java.util.Map<java.lang.String,?> properties)
Marshaller
properties. These properties will be set on the
underlying JAXB Marshaller
, and allow for features such as indentation.properties
- the propertiesMarshaller.setProperty(String, Object)
,
Marshaller.JAXB_ENCODING
,
Marshaller.JAXB_FORMATTED_OUTPUT
,
Marshaller.JAXB_NO_NAMESPACE_SCHEMA_LOCATION
,
Marshaller.JAXB_SCHEMA_LOCATION
public void setUnmarshallerProperties(java.util.Map<java.lang.String,?> properties)
Unmarshaller
properties. These properties will be set on the
underlying JAXB Unmarshaller
.properties
- the propertiesUnmarshaller.setProperty(String, Object)
public void setMarshallerListener(Marshaller.Listener marshallerListener)
Marshaller.Listener
to be registered with the JAXB Marshaller
.public void setUnmarshallerListener(Unmarshaller.Listener unmarshallerListener)
Unmarshaller.Listener
to be registered with the JAXB Unmarshaller
.public void setValidationEventHandler(ValidationEventHandler validationEventHandler)
public void setAdapters(XmlAdapter<?,?>... adapters)
XmlAdapter
s to be registered with the JAXB Marshaller
and Unmarshaller
public void setSchema(Resource schemaResource)
public void setSchemas(Resource... schemaResources)
public void setSchemaLanguage(java.lang.String schemaLanguage)
http://www.w3.org/2001/XMLSchema"
.XMLConstants.W3C_XML_SCHEMA_NS_URI
,
XMLConstants.RELAXNG_NS_URI
public void setSchemaResourceResolver(org.w3c.dom.ls.LSResourceResolver schemaResourceResolver)
SchemaFactory.setResourceResolver(org.w3c.dom.ls.LSResourceResolver)
,
setSchema(Resource)
,
setSchemas(Resource[])
public void setLazyInit(boolean lazyInit)
JAXBContext
for this marshaller.
Default is false
to initialize on startup; can be switched to true
.
Early initialization just applies if afterPropertiesSet()
is called.
public void setMtomEnabled(boolean mtomEnabled)
false
: marshalling using XOP/MTOM not being enabled.public void setSupportJaxbElementClass(boolean supportJaxbElementClass)
supports(Class)
returns true
for the JAXBElement
class.
Default is false
, meaning that supports(Class)
always returns false
for
JAXBElement
classes (though supports(Type)
can return true
, since it can
obtain the type parameters of JAXBElement
).
This property is typically enabled in combination with usage of classes like
MarshallingView
,
since the ModelAndView
does not offer type parameter information at runtime.
supports(Class)
,
supports(Type)
public void setCheckForXmlRootElement(boolean checkForXmlRootElement)
supports(Class)
should check for
@XmlRootElement
annotations.
Default is true
, meaning that supports(Class)
will check for
this annotation. However, some JAXB implementations (i.e. EclipseLink MOXy) allow
for defining the bindings in an external definition file, thus keeping the classes
annotations free. Setting this property to false
supports these
JAXB implementations.
supports(Class)
,
supports(Type)
public void setMappedClass(java.lang.Class<?> mappedClass)
public void setSupportDtd(boolean supportDtd)
Default is false
meaning that DTD is disabled.
public boolean isSupportDtd()
public void setProcessExternalEntities(boolean processExternalEntities)
Default is false
, meaning that external entities are not resolved.
Note that processing of external entities will only be enabled/disabled when the
Source
passed to unmarshal(Source)
is a SAXSource
or
StreamSource
. It has no effect for DOMSource
or StAXSource
instances.
Note: setting this option to true
also
automatically sets setSupportDtd(boolean)
to true
.
public boolean isProcessExternalEntities()
public void setBeanClassLoader(java.lang.ClassLoader classLoader)
BeanClassLoaderAware
class loader
to
a bean instance.
Invoked after the population of normal bean properties but
before an initialization callback such as
InitializingBean's
InitializingBean.afterPropertiesSet()
method or a custom init-method.
setBeanClassLoader
in interface BeanClassLoaderAware
classLoader
- the owning class loaderpublic void afterPropertiesSet() throws java.lang.Exception
InitializingBean
This method allows the bean instance to perform initialization only possible when all bean properties have been set and to throw an exception in the event of misconfiguration.
afterPropertiesSet
in interface InitializingBean
java.lang.Exception
- in the event of misconfiguration (such
as failure to set an essential property) or if initialization fails.public JAXBContext getJaxbContext()
public boolean supports(java.lang.Class<?> clazz)
Marshaller
supports
in interface Marshaller
supports
in interface Unmarshaller
clazz
- the class that this marshaller is being asked if it can marshaltrue
if this marshaller can indeed marshal instances of the supplied class;
false
otherwisepublic boolean supports(java.lang.reflect.Type genericType)
GenericMarshaller
supports
in interface GenericMarshaller
supports
in interface GenericUnmarshaller
genericType
- the type that this marshaller is being asked if it can marshaltrue
if this marshaller can indeed marshal instances of the supplied type;
false
otherwisepublic void marshal(java.lang.Object graph, javax.xml.transform.Result result) throws XmlMappingException
Marshaller
Result
.marshal
in interface Marshaller
graph
- the root of the object graph to marshalresult
- the result to marshal toXmlMappingException
- if the given object cannot be marshalled to the resultpublic void marshal(java.lang.Object graph, javax.xml.transform.Result result, @Nullable MimeContainer mimeContainer) throws XmlMappingException
MimeMarshaller
Result
,
writing binary data to a MimeContainer
.marshal
in interface MimeMarshaller
graph
- the root of the object graph to marshalresult
- the result to marshal tomimeContainer
- the MIME container to write extracted binary content toXmlMappingException
- if the given object cannot be marshalled to the resultprotected Marshaller createMarshaller()
protected void initJaxbMarshaller(Marshaller marshaller) throws JAXBException
Marshaller
, and after the respective properties have been set.
The default implementation sets the defined properties
, the validation event handler
, the schemas
, listener
, and
adapters
.
JAXBException
public java.lang.Object unmarshal(javax.xml.transform.Source source) throws XmlMappingException
Unmarshaller
Source
into an object graph.unmarshal
in interface Unmarshaller
source
- the source to marshal fromXmlMappingException
- if the given source cannot be mapped to an objectpublic java.lang.Object unmarshal(javax.xml.transform.Source source, @Nullable MimeContainer mimeContainer) throws XmlMappingException
MimeUnmarshaller
Source
into an object graph,
reading binary attachments from a MimeContainer
.unmarshal
in interface MimeUnmarshaller
source
- the source to marshal frommimeContainer
- the MIME container to read extracted binary content fromXmlMappingException
- if the given source cannot be mapped to an objectprotected java.lang.Object unmarshalStaxSource(Unmarshaller jaxbUnmarshaller, javax.xml.transform.Source staxSource) throws JAXBException
JAXBException
protected Unmarshaller createUnmarshaller()
protected void initJaxbUnmarshaller(Unmarshaller unmarshaller) throws JAXBException
Marshaller
, and after the respective properties have been set.
The default implementation sets the defined properties
, the validation event handler
, the schemas
, listener
, and
adapters
.
JAXBException
protected XmlMappingException convertJaxbException(JAXBException ex)
JAXBException
to an appropriate exception from the
org.springframework.oxm
hierarchy.ex
- JAXBException
that occurredXmlMappingException