Java MS SQL ->; mysql 转换
我构建了一个 Java 应用程序,用于将数据从 MSSQL 数据库传输到 mySQL 数据库。我遇到的问题是 MSSQL 数据库不断出现故障并导致我的应用程序抛出异常,因为它无法连接到服务器。有没有办法让我的应用程序在出现任何错误时重新启动?我正在 Ubuntu 10.04 LTS 上运行。
I have built a Java application that transfers data from a MSSQL db to a mySQL DB. The problem I have is that the MSSQL db constantly goes down and causes my application to throw exceptions because it can not connect to the server. Is there a way that I can tell my application to restart if it gets any error? I am running on Ubuntu 10.04 LTS.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法重新启动它,但根据应用程序,您可以模拟重新启动。
如果是控制台应用程序,您只需再次调用
main(..)
方法即可。如果是桌面应用程序,可以隐藏当前的
JFrame
并setVisible(true)
一个新的JFrame
You can't restart it, but depending on the application, you can simulate a restart.
If it is a console application, you can simply call the
main(..)
method again.If it is a desktop application, you can hide the current
JFrame
andsetVisible(true)
a newJFrame