我可以将 JSch 配置为在连接失败时自动重新连接吗?
我正在使用 JSch API for Java 进行 SFTP 连接。有时服务器可能会宕机一秒钟或者连接可能很忙。在这些情况下,在确定连接失败之前,我需要至少重新连接服务器三次。
JSch 是否提供任何配置选项来自动执行此操作?
I am using the JSch API for Java for SFTP connections. Sometimes the server may be down for a second or the connection may be busy. In these cases I would need to re-connect to the server three times at least before I decide the connection has failed.
Does JSch provide any configuration option to do this automatically?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JSch 没有这样的配置选项,但您可以自己简单地执行此操作。
执行此块后,要么连接会话,要么抛出 JSchException。
JSch has no such configuration option, but you can simply do this yourself.
After executing this block, either the session is connected or a JSchException is thrown.