我从队列中提取数据,然后使用 int-xml:validating-filter 验证输入有效负载。我已设置 throw-exception-on-rejection =" true" 以便抛出异常。
我需要掌握异常消息(验证错误)以及输入有效负载。您能否建议可用于捕获此数据的选项?
<int-jms:message-driven-channel-adapter id="jmsIn"
destination="requestQueue" channel="orderChannel"/>
<int-xml:validating-filter id="validatingFilter"
input-channel="orderChannel"
output-channel="validOutputChannel"
discard-channel="errOutputChannel"
schema-type="xml-schema"
throw-exception-on-rejection="true"
schema-location="OrderProcessing/order.xsd"/>
答案 0 :(得分:1)
如果你能抓住那个例外,那么你并不清楚。
XmlValidatingMessageSelector
中的代码如下所示:
if (this.throwExceptionOnRejection) {
throw new MessageRejectedException(message, "Message was rejected due to XML Validation errors",
new AggregatedXmlMessageValidationException(
Arrays.<Throwable>asList(validationExceptions)));
}
因此,MessageRejectedException
具有所需的message
作为验证失败的原因。并且所有验证错误都代表AggregatedXmlMessageValidationException
的{{1}} cause
。