ALearner

  • 首页
  • Python
  • Linux
  • Java
  • 工具
  • 前端
  • 算法
  • My World
HelloStranger
每个人都是初学者
  1. 首页
  2. Java
  3. SpringMvc
  4. 正文

Mybatis传多个参数(三种解决方案)

2017年7月20日 7778点热度 0人点赞 0条评论

第一种

DAO层的函数方法

public User selectUser(String name,String area);

对应的Mapper.xml

<select>
 select * from user_user_t where user_name = #{0} and user_area=#{1}
 </select>

其中,#{0}代表接收的是dao层中的第一个参数,#{1}代表dao层中第二参数,更多参数一致往后加即可。

第二种

此方法采用Map传多参数。

Dao层的函数方法

public User selectUser(Map paramMap);

对应的Mapper.xml

<select>
          select * from user_user_t where user_name = #{userName,jdbcType=VARCHAR} and user_area=#{userArea,jdbcType=VARCHAR}
 </select>

Service层调用

private User xxxSelectUser(){
Map paramMap=new hashMap();
paramMap.put(“userName”,”对应具体的参数值”);
paramMap.put(“userArea”,”对应具体的参数值”);
User user=xxx. selectUser(paramMap);}

此方法不够直观,见到接口方法不能直接的知道要传的参数是什么。

第三种

Dao层的函数方法

public User selectUser(@param(“userName”)Stringname,@param(“userArea”)String area);

对应的Mapper.xml

 

 <select>
select * from user_user_t where user_name = #{userName,jdbcType=VARCHAR} and user_area=#{userArea,jdbcType=VARCHAR}
 </select>

个人觉得这种方法比较好,能让开发者看到dao层方法就知道该传什么样的参数,比较直观,个人推荐用此种方案。

注意:在这里的 @param(“userName”)  、@param(“userArea”) 标注是在DAO层使用的标注,一定要和Controller层的@param 标注分开。

 

相关

本作品采用 知识共享署名 4.0 国际许可协议 进行许可
标签: Mybatis 注解
最后更新:2017年11月10日

iquantumer

你现在的态度决定你十年后是人物还是废物。

点赞
< 上一篇
下一篇 >

文章评论

razz evil exclaim smile redface biggrin eek confused idea lol mad twisted rolleyes wink cool arrow neutral cry mrgreen drooling persevering
取消回复

COPYRIGHT © 2022 alearner.top. ALL RIGHTS RESERVED.

Theme Kratos Made By Seaton Jiang

鲁ICP备16024047号