1

我在 Java 程序中有以下场景:

...
try

   // 1
   PreparedStatement pstmt1 = conn.getPreparedStatement("SQL QUERY");
   pstmt1.setQueryTimeout(1);
   pstm.executeUpdate();
   System.out.println("1 executed");

   // 2
   PreparedStatement pstmt2 = conn.getPreparedStatement("SQL QUERY");
   pstmt2.setQueryTimeout(1);
   pstmt2.executeUpdate();
   System.out.println("2 executed");

   // 3
   PreparedStatement pstmt3 = conn.getPreparedStatement("SQL QUERY");
   pstmt3.setQueryTimeout(1);
   pstmt3.executeUpdate();
   System.out.println("3 executed");

catch(Exception e){

     e.printStackTrace();

}
...

如果我“拔下电缆”并且在第一次 executeUpdate() 调用后与数据库的连接丢失。我如何告诉程序只等待 1 秒,如果没有响应立即进入 catch?

现在发生的事情是程序在该点之后卡住了(第一个 executeUpdate(),在输出“1已执行”处)。

pstmt.setQueryTimeout(1) 方法似乎不起作用。

我在服务器的连接池属性中设置了 10 秒后的连接超时。

很多分钟(半小时)后,我收到以下错误(预期错误):

The Connection Manager received a fatal connection error from the Resource Adapter for resource jdbc/JNDI_BD1.  The exception which was received is com.ibm.websphere.ce.cm.StaleConnectionException: [jcc][t4][2030][11211][3.58.82] A communication error occurred during operations on the connection's underlying socket, socket input stream, or socket output stream.  Error location: Reply.fill().  Message: No route to host. ERRORCODE=-4499, SQLSTATE=08001:com.ibm.db2.jcc.am.io: [jcc][t4][2030][11211][3.58.82] A communication error occurred during operations on the connection's underlying socket, socket input stream, or socket output stream.  Error location: Reply.fill().  Message: No route to host. ERRORCODE=-4499, SQLSTATE=08001:java.net.SocketException: No route to host

非常感谢任何帮助。

4

2 回答 2

1

并非所有驱动程序都支持查询超时。但即使他们这样做了:查询超时并不是为了检测网络超时。查询超时等最有可能的选项将由数据库服务器处理(即:驱动程序询问服务器:如果查询时间超过 xxx,则中止查询),或者驱动程序和/或服务器根本不支持它。

套接字超时是一个更低级别的超时,大多数驱动程序都会为此设置连接属性(so_timeout、套接字超时等)。

于 2012-11-13T08:37:35.733 回答
0

如果您可以将代码包装成Callable,我建议使用番石榴的 TimeLimiter::callWithTimeout。它正是为此目的而设计的。

于 2012-11-12T22:56:47.487 回答