在MyBatis中可以通過在<select>
標簽中添加timeout
屬性來設置特定查詢的超時時間。例如:
<select id="selectById" parameterType="int" resultType="User" timeout="5000">
SELECT * FROM users WHERE id = #{id}
</select>
在上面的例子中,超時時間被設置為5000毫秒,也就是5秒。這樣就可以針對特定的查詢設置不同的超時時間。請注意,超時時間的單位是毫秒。