I would like to know what is the type of value which we need to pass in public void setQueryTimeout(int queryTimeout) in jdbcTemplate. The document says
> 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
Like to know if queryTimeout is milliseconds, seconds or minutes
After checking the similar
setQueryTimeout()fromjava.sql.Statementclass, my guess is that they behave the same.A good way to start with similar issues is to check a working example on the internet. It helps a lot!