MyBatis3传递多个参数(Multiple Parameters)
MyBatis3传递多个参数(Multiple Parameters)
传递多个参数一般用在查询上,比如多个条件组成的查询,有以下方式去实现:
版本信息:
MyBatis:3.4.4
1、自带方法
select user.id,user.userName,user.userAddress,article.id as aid,article.title,article.content from user,article where user.id=article.userid and user.id=#{arg0} limit #{arg1},#{arg2}
http://
public List
List
说明,arg0...也可以写成param0...
2、直接传递对象
select * from article where 1 = 1
and title = #{title}
and content = #{content}
limit 1
public Article dynamicIfTest(Article article);
Article inArticle = new Article();
inArticle.setTitle("test_title");
Article outArticle = userOperation.dynamicIfTest(inArticle);
3、使用@Praam标注
select * from article where 1 = 1
and title = #{title}
and content = #{content}
</when>
and tile = "test_title"
public Article dynamicChooseTest(
@Param("title")
String title,
@Param("content")
String content);
Article outArticle2 = userOperation.dynamicChooseTest("test_title",null);
说明:这种方法同样可以用在一个参数的时候。
4、使用HashMap
select * from article where id = #{id} and name = #[code]
说明:parameterType="hashmap"可以不用写。
public List
HashMap
map.put("id", 1);
map.put("code", "123");
List
特殊的HashMap示例,用在foreach节点:
select * from article where title like "%"#{title}"%" and id in
#{item}
public List
HashMap
map.put("title", "title");
map.put("ids", new int[]{1,3,6});
List
5、List结合foreach节点一起使用
select * from article where id in
#{item}
public List
List
ids.add(1);
ids.add(3);
ids.add(6);
List
6、数组结合foreach节点一起使用
select * from article where id in
#{item}
public List
int[] ids2 = {1,3,6};
List
参考:
http://yihaomen.com/article/java/426.htm
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~