SSM框架(二)——Mybatis傳多個參數

本文介紹三種方法:

1)用下標代替

DAO層的函數方法 

Public User  selectUser(String name,String area);
對應的Mapper.xml  

<select id="selectUser" resultMap="BaseResultMap">
    select *  from user_user_t   
    where user_name = #{0} and user_area=#{1}
</select>
其中,#{0}代表接收的是dao層中的第一個參數,#{1}代表dao層中第二參數,更多參數一致往後加即可。

2)採用Map傳多參數

Dao層的函數方法

Public User  selectUser(Map paramMap);
對應的Mapper.xml

<select id=" selectUser"  resultMap="BaseResultMap">
   select *  from user_user_t   
   where user_name = #{userName,jdbcType=VARCHAR} 
   and user_area=#{userArea,jdbcType=VARCHAR}
</select>
Service層調用

Private User selectUserService(){
Map paramMap=new hashMap();
paramMap.put(“userName”,”對應具體的參數值”);
paramMap.put(“userArea”,”對應具體的參數值”);
User user=dao. selectUser(paramMap);
}
個人認爲此方法不夠直觀,見到接口方法不能直接的知道要傳的參數是什麼。

3)注入方法時明確指出

Dao層的函數方法

Public User  selectUser(@param(“userName”)Stringname,@param(“userArea”)String area);
對應的Mapper.xml

<select id=" selectUser"  resultMap="BaseResultMap">
   select *  from user_user_t   
   where user_name = #{userName,jdbcType=VARCHAR} 
   and user_area=#{userArea,jdbcType=VARCHAR}
</select> 
個人覺得這種方法比較好,能讓開發者看到dao層方法就知道該傳什麼樣的參數,比較直觀,個人推薦用此種方案。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章