如何检查我们的数据库是否已连接到 java eclipse 动态项目中?

How to check that our Database is connected in java dynamic project in eclipse?

我使用了 eclipse java 动态项目我想知道我的数据库是否已连接或是否正常工作我使用了 xampp apache 服务器和 tomcat 9

您可以使用 java 中的这个有用方法。 sql。 连接 Class:


Connection con = new Connection(/* MY SERVER PARAMETERS */);

boolean valid=con.isValid(/* int millis */);
System.out.println("The connection is active?" + valid);

希望这篇link可以帮到你:https://docs.oracle.com/javase/7/docs/api/java/sql/Connection.html#isValid(int)