2

我想知道我们需要传入的值的类型是public void setQueryTimeout(int queryTimeout)什么jdbcTemplate。文件说

> Set the query timeout for statements that this JdbcTemplate executes.
> <p>Default is -1, indicating to use the JDBC driver's default (i.e. to
> not pass a specific query timeout setting on the driver). <p>Note: Any
> timeout specified here will be overridden by the remaining transaction
> timeout when executing within a transaction that has a timeout
> specified at the transaction level. @see
> java.sql.Statement#setQueryTimeout

想知道queryTimeout是否为milliseconds,secondsminutes

4

1 回答 1

5

在检查了课堂上的相似之处setQueryTimeout()java.sql.Statement,我的猜测是它们的行为相同。

setQueryTimeout(int seconds)

从类似问题开始的一个好方法是查看互联网上的一个工作示例。它有很大帮助!

于 2020-05-20T12:17:45.763 回答