在MyBatis中,可以通過在<select>
, <insert>
, <update>
, <delete>
等標簽中添加timeout
屬性來設置SQL語句的超時時間,單位為秒。例如:
<select id="selectUser" resultType="User" timeout="5">
SELECT * FROM user WHERE id = #{id}
</select>
在上面的例子中,SQL語句的執行超時時間被設置為5秒。當執行時間超過5秒時,MyBatis會拋出一個TimeoutException
異常。