Skip to content
目录概览

在mapper中如何传递多个参数?

  • 第一种:

    java
    //DAO层的函数
    Public UserselectUser(String name,String area);  
    //对应的xml,#{0}代表接收的是dao层中的第一个参数,#{1}代表dao层中第二参数,更多参数一致往后加即可。
    <select id="selectUser"resultMap="BaseResultMap">  
      select *  fromuser_user_t   whereuser_name = #{0} anduser_area=#{1}  
    </select>  
    
    1
    2
    3
    4
    5
    6
  • 第二种: 使用 @param 注解:

    java
    public interface usermapper {
      user selectuser(@param(“username”) string username,@param(“hashedpassword”) string hashedpassword);
    }
    然后,就可以在xml像下面这样使用(推荐封装为一个map,作为单个参数传递给mapper):
    <select id=”selectuser” resulttype=”user”>
      select id, username, hashedpassword
      from some_table
      where username = #{username}
      and hashedpassword = #{hashedpassword}
    </select>
    
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
  • 第三种:多个参数封装成map

    java
    try{
      //映射文件的命名空间.SQL片段的ID,就可以调用对应的映射文件中的SQL
      //由于我们的参数超过了两个,而方法中只有一个Object参数收集,因此我们使用Map集合来装载我们的参数
      Map<String, Object> map = new HashMap();
      map.put("start", start);
      map.put("end", end);
      return sqlSession.selectList("StudentID.pagination", map);
    }catch(Exception e){
      e.printStackTrace();
      sqlSession.rollback();
      throw e; 
    }
    finally{
      MybatisUtil.closeSqlSession();
    }
    
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15