在 MyBatis 中使用存储过程可以通过以下步骤实现:
-
定义存储过程:首先在数据库中定义存储过程,可以使用 SQL 来创建存储过程。
-
创建映射文件:在 MyBatis 的映射文件中定义存储过程的调用方式,可以使用
<select>
,<insert>
,<update>
,<delete>
等标签来调用存储过程。 -
调用存储过程:在 Java 代码中通过 MyBatis 的 SqlSession 来调用定义好的存储过程。
下面是一个示例代码:
<!-- 定义存储过程的映射文件 -->
<mapper namespace="com.example.ProcedureMapper">
<select id="callProcedure" statementType="CALLABLE">
{call my_procedure(#{param1, mode=IN, jdbcType=INTEGER}, #{param2, mode=OUT, jdbcType=INTEGER})}
</select>
</mapper>
// Java 代码中调用存储过程
SqlSession sqlSession = sqlSessionFactory.openSession();
ProcedureMapper mapper = sqlSession.getMapper(ProcedureMapper.class);
Map<String, Object> params = new HashMap<>();
params.put("param1", 123);
params.put("param2", null);
mapper.callProcedure(params);
Integer result = (Integer) params.get("param2");
System.out.println("Result from stored procedure: " + result);
sqlSession.close();
以上代码中,首先在映射文件中定义了一个存储过程的调用方式,并在 Java 代码中通过 SqlSession 和 Mapper 来调用存储过程,并获取存储过程的返回结果。