mybatis+sqlserver2008 调用存储过程
Posted mangues
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis+sqlserver2008 调用存储过程相关的知识,希望对你有一定的参考价值。
TestLogMapper.xml
<select id="test" statementType="CALLABLE" >
<![CDATA[
call p_auto_update_node(#uuid, mode=IN, jdbcType=VARCHAR,#customerId, mode=IN, jdbcType=VARCHAR,#nodeId, mode=IN, jdbcType=VARCHAR,#amount, mode=IN, jdbcType=VARCHAR,#serviceType, mode=IN, jdbcType=VARCHAR)
]]>
</select>
mapper.java
public interface TestLogMapper
void test(@Param("uuid") String uuid, @Param("customerId") String customerId,
@Param("nodeId") String nodeId, @Param("amount") BigDecimal amount,
@Param("serviceType") Integer serviceType);
以上是关于mybatis+sqlserver2008 调用存储过程的主要内容,如果未能解决你的问题,请参考以下文章
springboot+mybatisplus+sqlserver(2008SR)整合分页问题