Class Jaxb2RootElementHttpMessageConverter
- java.lang.Object
- org.springframework.http.converter.AbstractHttpMessageConverter<T>
- org.springframework.http.converter.xml.AbstractXmlHttpMessageConverter<T>
- org.springframework.http.converter.xml.AbstractJaxb2HttpMessageConverter<Object>
- org.springframework.http.converter.xml.Jaxb2RootElementHttpMessageConverter
- All Implemented Interfaces:
HttpMessageConverter<Object>
public class Jaxb2RootElementHttpMessageConverter extends AbstractJaxb2HttpMessageConverter<Object>
Implementation ofHttpMessageConverter
that can read and write XML using JAXB2.This converter can read classes annotated with
XmlRootElement
andXmlType
, and write classes annotated withXmlRootElement
, or subclasses thereof.Note: When using Spring's Marshaller/Unmarshaller abstractions from
spring-oxm
, you should use theMarshallingHttpMessageConverter
instead.- Since:
- 3.0
- Author:
- Arjen Poutsma, Sebastien Deleuze, Rossen Stoyanchev
- See Also:
MarshallingHttpMessageConverter
Field Summary
Fields inherited from class org.springframework.http.converter.AbstractHttpMessageConverter
logger
Constructor Summary
Constructors Constructor Description Jaxb2RootElementHttpMessageConverter()
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
canRead(Class<?> clazz, MediaType mediaType)
This implementation checks if the given class is supported, and if the supported media typesinclude the given media type.boolean
canWrite(Class<?> clazz, MediaType mediaType)
boolean
isProcessExternalEntities()
Return whether XML external entities are allowed.boolean
isSupportDtd()
Return whether DTD parsing is supported.protected Source
processSource(Source source)
protected Object
readFromSource(Class<?> clazz, HttpHeaders headers, Source source)
Abstract template method called fromAbstractHttpMessageConverter.read(Class, HttpInputMessage)
.void
setProcessExternalEntities(boolean processExternalEntities)
Indicate whether external XML entities are processed when converting to a Source.void
setSupportDtd(boolean supportDtd)
Indicate whether DTD parsing should be supported.protected boolean
supports(Class<?> clazz)
Indicates whether the given class is supported by this converter.protected void
writeToResult(Object o, HttpHeaders headers, Result result)
Abstract template method called fromAbstractXmlHttpMessageConverter.writeInternal(Object, HttpOutputMessage)
.Methods inherited from class org.springframework.http.converter.xml.AbstractJaxb2HttpMessageConverter
createMarshaller, createUnmarshaller, customizeMarshaller, customizeUnmarshaller, getJaxbContext
Methods inherited from class org.springframework.http.converter.xml.AbstractXmlHttpMessageConverter
readInternal, transform, writeInternal
Methods inherited from class org.springframework.http.converter.AbstractHttpMessageConverter
addDefaultHeaders, canRead, canWrite, getContentLength, getDefaultCharset, getDefaultContentType, getSupportedMediaTypes, read, setDefaultCharset, setSupportedMediaTypes, write
Constructor Detail
Jaxb2RootElementHttpMessageConverter
public Jaxb2RootElementHttpMessageConverter()
Method Detail
setSupportDtd
public void setSupportDtd(boolean supportDtd)
Indicate whether DTD parsing should be supported.Default is
false
meaning that DTD is disabled.
isSupportDtd
public boolean isSupportDtd()
Return whether DTD parsing is supported.
setProcessExternalEntities
public void setProcessExternalEntities(boolean processExternalEntities)
Indicate whether external XML entities are processed when converting to a Source.Default is
false
, meaning that external entities are not resolved.Note: setting this option to
true
also automatically setssetSupportDtd(boolean)
totrue
.
isProcessExternalEntities
public boolean isProcessExternalEntities()
Return whether XML external entities are allowed.
canRead
public boolean canRead(Class<?> clazz, MediaType mediaType)
Description copied from class:AbstractHttpMessageConverter
This implementation checks if the given class is supported, and if the supported media typesinclude the given media type.- Specified by:
canRead
in interfaceHttpMessageConverter<Object>
- Overrides:
canRead
in classAbstractHttpMessageConverter<Object>
- Parameters:
clazz
- the class to test for readabilitymediaType
- the media type to read (can benull
if not specified); typically the value of aContent-Type
header.- Returns:
true
if readable;false
otherwise
canWrite
public boolean canWrite(Class<?> clazz, MediaType mediaType)
Description copied from class:AbstractHttpMessageConverter
This implementation checks if the given class is supported, and if the supported media types include the given media type.- Specified by:
canWrite
in interfaceHttpMessageConverter<Object>
- Overrides:
canWrite
in classAbstractHttpMessageConverter<Object>
- Parameters:
clazz
- the class to test for writabilitymediaType
- the media type to write (can benull
if not specified); typically the value of anAccept
header.- Returns:
true
if writable;false
otherwise
supports
protected boolean supports(Class<?> clazz)
Description copied from class:AbstractHttpMessageConverter
Indicates whether the given class is supported by this converter.- Specified by:
supports
in classAbstractHttpMessageConverter<Object>
- Parameters:
clazz
- the class to test for support- Returns:
true
if supported;false
otherwise
readFromSource
protected Object readFromSource(Class<?> clazz, HttpHeaders headers, Source source) throws IOException
Description copied from class:AbstractXmlHttpMessageConverter
Abstract template method called fromAbstractHttpMessageConverter.read(Class, HttpInputMessage)
.- Specified by:
readFromSource
in classAbstractXmlHttpMessageConverter<Object>
- Parameters:
clazz
- the type of object to returnheaders
- the HTTP input headerssource
- the HTTP input body- Returns:
- the converted object
- Throws:
IOException
- in case of I/O errors
processSource
protected Source processSource(Source source)
writeToResult
protected void writeToResult(Object o, HttpHeaders headers, Result result) throws IOException
Description copied from class:AbstractXmlHttpMessageConverter
Abstract template method called fromAbstractXmlHttpMessageConverter.writeInternal(Object, HttpOutputMessage)
.- Specified by:
writeToResult
in classAbstractXmlHttpMessageConverter<Object>
- Parameters:
o
- the object to write to the output messageheaders
- the HTTP output headersresult
- the HTTP output body- Throws:
IOException
- in case of I/O errors