spring-camel 3.0 xml 中处理的标签已弃用
handled tag in spring-camel 3.0 xml is deprecated
从 2.x 版本迁移到 3.16.0 时遇到问题。 camel-spring 3.x 版本中 <handled><constant>true</constant></handled>
的替代方案是什么。
在更高版本中 handled 和 continue 的替代方案是什么?
handled
标签 未弃用 正如您在 class OnExceptionDefinition
corresponding to the model class that is used to generate the XSD schema of the Spring XML DSL and in the latest XSD schema.
中看到的那样
您的代码在 Spring XML DSL 中的等价物是:
<onException>
<!-- the exception is full qualified names as plain strings -->
<!-- there can be more just add a 2nd, 3rd exception element (unbounded) -->
<exception>java. Lang. Throwable</exception>
<!-- mark this as handled -->
<handled>
<constant>true</constant>
</handled>
...
</onException>
有关使用 Spring DSL 进行错误处理的更多详细信息,请参阅 to the documentation。
从 2.x 版本迁移到 3.16.0 时遇到问题。 camel-spring 3.x 版本中 <handled><constant>true</constant></handled>
的替代方案是什么。
在更高版本中 handled 和 continue 的替代方案是什么?
handled
标签 未弃用 正如您在 class OnExceptionDefinition
corresponding to the model class that is used to generate the XSD schema of the Spring XML DSL and in the latest XSD schema.
您的代码在 Spring XML DSL 中的等价物是:
<onException>
<!-- the exception is full qualified names as plain strings -->
<!-- there can be more just add a 2nd, 3rd exception element (unbounded) -->
<exception>java. Lang. Throwable</exception>
<!-- mark this as handled -->
<handled>
<constant>true</constant>
</handled>
...
</onException>
有关使用 Spring DSL 进行错误处理的更多详细信息,请参阅 to the documentation。