mybatis中注解式开发中传递多个参数的方式

在mybatis的动态代理开发中,当接口需要传入多个参数时,一般有以下几种做法(推荐@Param方式)

1.传递包装类型(不推荐要创建一个包装类去包含所有的参数类型,并且在#{}中还要填入特定的值)

2.假设接口中传入两个参数则#{0}代表第一个参数,以此类推

<select id="xxxxx" >
    select  *  from xxxxxx   where xxx = #{0} and xxxx=#{1}
</select>

3.添加@Param注解

int deleteProductCategory(@Param("shopId")Long shopId,@Param("productCategoryId")Long productCategoryId);
<delete id="deleteProductCategory"  >
 			DELETE FROM 
 			tb_product_category
 			WHERE
 			shop_id=#{shopId}
 			AND
 			product_category_id=#{productCategoryId}
</delete>

取得时候#{xx}xx填写注解中标注的内容即可,可读性高,方便,不易出错,推荐

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值