一、项目背景
springboot + mybatis调用MySQL存储过程
二、具体实现
Dao层实现:
/**
* 调用数据整理的存储过程
*/
void dataClean(@Param("updateTime") String updateTime);
Mapper.xml实现:
<!-- 调用数据整理的存储过程 -->
<update id="dataClean" statementType="CALLABLE">
{call DataClean(#{updateTime, mode=IN})}
</update>
Service层调用:
//调用存储过程
dataMapper.dataClean(updateTime);