org.apache.ibatis.annotations.Param注解
程序员文章站
2022-05-24 12:00:42
...
在mybatis的Map类中,方法参数为多个时,前面一般需要加上@Param注解,例如
User getUser(@Param(“userId”)String userId,@Param(“password”)String password);
@Param注解分为spring的和mybatis的:
org.springframework.data.repository.query.Param与org.apache.ibatis.annotations.Param
两者的区别在于
在使用org.springframework.data.repository.query.Param时,参数要按照先后顺序传入
select * from user where user_id= #{0,jdbcType=VARCHAR} and password=#{1,jdbcType=VARCHAR}
而在使用org.apache.ibatis.annotations.Param时,只需要使用参数名即可
select * from user where user_id= #{userId,jdbcType=VARCHAR} and password=#{password,jdbcType=VARCHAR}
所以在使用上,我们一般都使用mybatis的@Param注解,如果没有使用@Param注解,则参数将会以它们的顺序位置来和SQL语句中的表达式进行映射。
此注解用在mapper中的方法参数中:
public void saveProduct(@Param("ProductList")List<ProductList> productList);
通常ibatis在没有指定变量名时,会使用自己默认的,此时如果你写的是其他值,则会报错(这里的collection,如果没有通过param指定,则应该是list,array,map等):
<foreach collection="productList" item="anyName" separator="union all">
select #{anyName.productId}.....from dual
</forecah>
通常还是