在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
异常。