Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在应用程序级别配置默认查询超时。我使用 spring 、 hibernate 和 db2 作为后端。由于我们使用的是旧版本的 IBM websphere,因此无法在数据源级别设置超时。我尝试在事务管理器中配置 defaultTimeout 但这没有帮助。我也不想集成 c3p0 连接池。hibernate 是否有任何其他选项可用于在应用程序级别设置全局查询超时,如果是,如何配置。
提前致谢
这是弹簧配置配置。
<bean class="org.springframework.jdbc.core.JdbcTemplate"> <property name="queryTimeout" value="60"/> </bean>