Apache Camel onException 不会被解雇

发布于 2024-12-09 08:53:32 字数 570 浏览 0 评论 0原文

我有这个简单的路线:

onException(Exception.class)
  .to("log:com.mycompany.test?level=INFO");

from("sftp://myuser@localhost:/files/?password=mypassword&knownHostsFile=/myuser/.ssh/known_hosts&noop=true")
  .to("log:com.mycompany.test?level=INFO");

如果我停止 sftp 服务器, from("sftp:...") 会抛出 org.apache.camel.component.file.GenericFileOperationFailedException: Cannot connect to sftp://myuser@localhost 我希望 onException 日志会打印一些内容,但它没有。为什么??

如果我启用 sftp 服务器,则路由有效,并且 from("sftp:...") 之后的日志将打印文件内容(所以,我猜 slf4j 配置良好)。

可能是什么问题?

I have this simple route:

onException(Exception.class)
  .to("log:com.mycompany.test?level=INFO");

from("sftp://myuser@localhost:/files/?password=mypassword&knownHostsFile=/myuser/.ssh/known_hosts&noop=true")
  .to("log:com.mycompany.test?level=INFO");

If I stop the sftp server, from("sftp:...") throws an org.apache.camel.component.file.GenericFileOperationFailedException: Cannot connect to sftp://myuser@localhost
I would expect that the onException log prints something, but it does not. Why??

If I enable the sftp server, the route works and the log after from("sftp:...") prints the file content (so, i guess that slf4j is well configured).

What can be the problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文