阅读量:0
在MyBatis中可以通过在<select>
标签中添加timeout
属性来设置特定查询的超时时间。例如:
<select id="selectById" parameterType="int" resultType="User" timeout="5000"> SELECT * FROM users WHERE id = #{id} </select>
在上面的例子中,超时时间被设置为5000毫秒,也就是5秒。这样就可以针对特定的查询设置不同的超时时间。请注意,超时时间的单位是毫秒。