问题描述
myBatis 映射 xml 文件里 好像好像 没有 类似于 ibatis 2.x 中 <procedure>的标签 来支持 存储过程请问 使用 myBatis 3.x 应该怎么 实现 对存储过程的 调用??
解决方案
<!-- 调用存储过程 --><select id="getAllUser" statementType="CALLABLE">{call getAllUser(#{userList,<!-- 参数 --> mode=OUT,<!-- 参数类型 --> javaType=java.sql.ResultSet,<!-- 参数java类型 --> jdbcType=CURSOR,<!-- 参数jdbc类型 --> resultMap=userMap<!-- ResultSet需要resultMap参数 --> })}</select>去参考下人家的资料 你就明白了! http://yhb3420.iteye.com/category/108989?show_full=true
时间: 2024-12-20 15:25:57