在MyBatis的注解方式中可以通过在Mapper接口方法上使用@Options注解来指定ResultSetType,示例如下:
@Select("SELECT * FROM table_name")
@Options(resultSetType = ResultSetType.TYPE_SCROLL_SENSITIVE)
List<User> getUsers();
在@Options注解中使用resultSetType属性来指定ResultSetType,可以设置为以下几种值:
通过在Mapper接口方法上使用@Options注解并设置resultSetType属性,可以指定该方法返回结果集的ResultSetType。