我在骆驼有以下路线
<route>
<from uri="target/in"/>
<doTry>
<to uri="validator:schema.xsd"/>
<to uri="file:target/messages/validation/valid?fileName=a.xml"/>
<doCatch>
<exception>org.apache.camel.ValidationException</exception>
<to uri="file:target/messages/validation/invalid?fileName=a.xml"/>
</doCatch>
</doTry>
</route>
当 XML 文件没有像这篇文章中那样通过验证时,我想收到错误消息
但是我如何在 Spring DSL 中做到这一点?