MyBatis3传递多个参数(Multiple Parameters)

网友投稿 184 2023-04-03

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

getUserArticlesByLimit(int id,int start,int limit);

List

articles=userMapper.getUserArticlesByLimit(1,0,2);

说明,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 getArticleBeanList(HashMap map);

HashMap map = new HashMap();

map.put("id", 1);

map.put("code", "123");

List

articless3 = userOperation.getArticleBeanList(map);

特殊的HashMap示例,用在foreach节点:

select * from article where title like "%"#{title}"%" and id in

#{item}

public List

dynamicForeach3Test(Map params);

HashMap map = new HashMap();

map.put("title", "title");

map.put("ids", new int[]{1,3,6});

List

articless3 = userOperation.dynamicForeach3Test(map);

5、List结合foreach节点一起使用

select * from article where id in

#{item}

public List

dynamicForeachTest(List ids);

List ids = new ArrayList();

ids.add(1);

ids.add(3);

ids.add(6);

List

articless = userOperation.dynamicForeachTest(ids);

6、数组结合foreach节点一起使用

select * from article where id in

#{item}

public List

dynamicForeach2Test(int[] ids);

int[] ids2 = {1,3,6};

List

articless2 = userOperation.dynamicForeach2Test(ids2);

参考:

http://yihaomen.com/article/java/426.htm

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Spring Boot日志技术logback原理及配置解析
下一篇:mybatis查询结果返回至实体类的示例代码
相关文章

 发表评论

暂时没有评论,来抢沙发吧~