public class XPathTransformer extends AbstractTransformer
XmlPayloadConverter
instance. The default converter type is DefaultXmlPayloadConverter
.
The evaluation result type will depend on either the enumeration value provided to
setEvaluationType(XPathEvaluationType)
or the presence of a NodeMapper
,
which takes precedence. If no NodeMapper
or evaluation type is configured explicitly,
the default evaluation type is XPathEvaluationType.STRING_RESULT
.
logger
Constructor and Description |
---|
XPathTransformer(java.lang.String expression)
Create an
XPathTransformer that will create an XPath expression from the given String
to be evaluated against converted inbound Message payloads. |
XPathTransformer(org.springframework.xml.xpath.XPathExpression expression)
Create an
XPathTransformer that will evaluate the given XPathExpression
against converted inbound Message payloads. |
Modifier and Type | Method and Description |
---|---|
protected java.lang.Object |
doTransform(Message<?> message)
Subclasses must implement this method to provide the transformation
logic.
|
void |
setConverter(XmlPayloadConverter converter)
Specify the
XmlPayloadConverter to use when converting a Message payload prior to XPath evaluation. |
void |
setEvaluationType(XPathEvaluationType evaluationType)
Specify the expected
XPathEvaluationType . |
void |
setNodeMapper(org.springframework.xml.xpath.NodeMapper<?> nodeMapper)
Set a
NodeMapper to use for generating the result object. |
transform
afterPropertiesSet, getApplicationContextId, getBeanFactory, getComponentName, getComponentType, getConversionService, getIntegrationProperties, getIntegrationProperty, getTaskScheduler, onInit, setApplicationContext, setBeanFactory, setBeanName, setComponentName, setConversionService, setTaskScheduler, toString
public XPathTransformer(java.lang.String expression)
XPathTransformer
that will create an XPath expression from the given String
to be evaluated against converted inbound Message payloads.public XPathTransformer(org.springframework.xml.xpath.XPathExpression expression)
XPathTransformer
that will evaluate the given XPathExpression
against converted inbound Message payloads.public void setEvaluationType(XPathEvaluationType evaluationType)
XPathEvaluationType
. The default is XPathEvaluationType.STRING_RESULT
.public void setNodeMapper(org.springframework.xml.xpath.NodeMapper<?> nodeMapper)
NodeMapper
to use for generating the result object. By default the NodeMapper is null,
but if explicitly set, type determination is the responsibility of the NodeMapper, taking precedence
over any configured evaluationType.public void setConverter(XmlPayloadConverter converter)
XmlPayloadConverter
to use when converting a Message payload prior to XPath evaluation.protected java.lang.Object doTransform(Message<?> message) throws java.lang.Exception
AbstractTransformer
doTransform
in class AbstractTransformer
java.lang.Exception