MyBatis的Mapper配置文件的parameterType用法


在MyBatis的select、insert、update、delete這些元素中都提到了parameterType這個屬性。MyBatis現在可以使用的parameterType有基本數據類型和JAVA復雜數據類型
基本數據類型:包含int,String,Date等。基本數據類型作為傳參,只能傳入一個。通過#{參數名} 即可獲取傳入的值復雜數據類型:包含JAVA實體類、Map。通過#{屬性名}或 #{map的KeyName}即可獲取傳入的值

基本數據類型參數示例:
根據班級ID查詢教師列表
xml文件
[html] view plaincopy

<select id="selectTeacher" parameterType="int" resultType="com.myapp.domain.Teacher"> select * from Teacher where c_id=#{id}

</select>[java] view plaincopy

List<Teacher> tList = teacherMapper.selectTeacher(2); for (Teacher entityTemp : tList) {

System.out.println(entityTemp.toString()); }

JAVA實體類型參數示例:
[html]  view plaincopy

<select id="selectTeacher" parameterType="com.myapp.domain.Teacher" resultType="com.myapp.domain.Teacher"> select * from Teacher where c_id=#{id}

</select> [java] view plaincopy

java代碼

Teacher queryTeacher=new Teacher(); queryTeacher.setId(2);

List<Teacher> tList = teacherMapper.selectTeacher(queryTeacher); for (Teacher entityTemp : tList) {

System.out.println(entityTemp.toString()); }

Map參數示例:
[html]  view plaincopy

<select id="selectTeacher" parameterType="Map" resultType="com.myapp.domain.Teacher"> select * from Teacher where c_id=#{id} and sex=#{sex}

</select>
[java] view plaincopy

java代碼

Map<String,String> map=new HasMap<String,String>(); map.put("id","2");

map.put("sex","男"); List<Teacher> tList = teacherMapper.selectTeacher(map);

for (Teacher entityTemp : tList) { System.out.println(entityTemp.toString()); }[java] view plaincopy

public List<Teacher> selectTeacher(@Param(value="id") String id,@Param(value="sex") String sex);[html] view plaincopy

<select id="selectTeacher" resultType="com.myapp.domain.Teacher"> select * from Teacher where c_id=#{id} and sex=#{sex}

</select>[java] view plaincopy

List<Teacher> tList = teacherMapper.selectTeacher("2","男"); for (Teacher entityTemp : tList) {

System.out.println(entityTemp.toString());


1. MyBatis的傳入參數parameterType類型分兩種

   1. 1. 基本數據類型:int,string,long,Date;

   1. 2. 復雜數據類型:類和Map

   注:不同版本的MyBatis對基本類型傳遞過來的參數名稱不能識別,要使用_parameter來代替。

[html]   view plain  copy
  1. <select id="getWinLogByEventId" parameterType="java.lang.Long" resultMap="BaseResultMap">  
  2.     select <include refid="Base_Column_List"/> from win_log where eventId = #{_parameter,jdbcType=BIGINT}  
  3. </select>  



2. 如何獲取參數中的值:

   2.1  基本數據類型:#{參數} 獲取參數中的值

   2.2  復雜數據類型:#{屬性名}  ,map中則是#{key}


3.案例:

 

 3.1 基本數據類型案例

[html]  view plain  copy
  在CODE上查看代碼片 派生到我的代碼片
  1. <sql id="Base_Column_List" >  
  2.     id, car_dept_name, car_maker_name, icon,car_maker_py,hot_type  
  3.   </sql>  
  4.   <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Long" >  
  5.     select   
  6.     <include refid="Base_Column_List" />  
  7.     from common_car_make  
  8.     where id = #{id,jdbcType=BIGINT}  
  9.   </select>  


 3.2 復雜類型--map類型     

[html]  view plain  copy
  在CODE上查看代碼片 派生到我的代碼片
  1. <select id="queryCarMakerList" resultMap="BaseResultMap" parameterType="java.util.Map">  
  2.         select  
  3.         <include refid="Base_Column_List" />  
  4.         from common_car_make cm  
  5.         where 1=1  
  6.         <if test="id != null">  
  7.             and  cm.id = #{id,jdbcType=DECIMAL}  
  8.         </if>  
  9.         <if test="carDeptName != null">  
  10.             and  cm.car_dept_name = #{carDeptName,jdbcType=VARCHAR}  
  11.         </if>  
  12.         <if test="carMakerName != null">  
  13.             and  cm.car_maker_name = #{carMakerName,jdbcType=VARCHAR}  
  14.         </if>  
  15.         <if test="hotType != null" >  
  16.            and  cm.hot_type = #{hotType,jdbcType=BIGINT}  
  17.         </if>  
  18.         ORDER BY cm.id  
  19.     </select>  


  3.3 復雜類型--類類型

[html]  view plain  copy
  在CODE上查看代碼片 派生到我的代碼片
  1. <update id="updateByPrimaryKeySelective" parameterType="com.epeit.api.model.CommonCarMake" >  
  2.    update common_car_make  
  3.    <set >  
  4.      <if test="carDeptName != null" >  
  5.        car_dept_name = #{carDeptName,jdbcType=VARCHAR},  
  6.      </if>  
  7.      <if test="carMakerName != null" >  
  8.        car_maker_name = #{carMakerName,jdbcType=VARCHAR},  
  9.      </if>  
  10.      <if test="icon != null" >  
  11.        icon = #{icon,jdbcType=VARCHAR},  
  12.      </if>  
  13.      <if test="carMakerPy != null" >  
  14.            car_maker_py = #{carMakerPy,jdbcType=VARCHAR},  
  15.      </if>  
  16.      <if test="hotType != null" >  
  17.            hot_type = #{hotType,jdbcType=BIGINT},  
  18.      </if>  
  19.    </set>  
  20.    where id = #{id,jdbcType=BIGINT}  
  21.  </update>  


3.4 復雜類型--map中包含數組的情況

[sql]   view plain  copy
  1. <select id="selectProOrderByOrderId" resultType="com.epeit.api.model.ProOrder" parameterType="java.util.HashMap" >    
  2.         select sum(pro_order_num) proOrderNum,product_id productId,promotion_id promotionId    
  3.         from pro_order    
  4.         where 1=1    
  5.         <if test="orderIds != null">    
  6.           and    
  7.             <foreach collection="orderIds" item="item" open="order_id IN(" separator="," close=")">    
  8.                 #{item,jdbcType=BIGINT}    
  9.             </foreach>    
  10.         </if>    
  11.         GROUP BY product_id,promotion_id    
  12. </select>   
注: 轉載地址


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM