mybatis傳遞引數到mapping.xml

上校發表於2016-10-02

第一種方案 ,通過序號傳遞

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層中第二引數,更多引數一致往後加即可。

第二種方案,通過map傳遞

此方法採用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 xxxSelectUser(){
Map paramMap=new hashMap();
paramMap.put(“userName”,”對應具體的引數值”);
paramMap.put(“userArea”,”對應具體的引數值”);
User user=xxx. selectUser(paramMap);}

個人認為此方法不夠直觀,見到介面方法不能直接的知道要傳的引數是什麼。

第三種方案,用@param通過單個引數名傳遞,推薦方式

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> 

第四種方案,用@param通過引數物件傳遞

Dao層的函式方法

Public User selectUser(@param(“user”)User user,@param(“userArea”)String area);

對應的Mapper.xml

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


每一種方式都可以不需要在xml中寫parameterType屬性

相關文章