mybatis中传入map类型的数据返回int类型数据

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis中传入map类型的数据返回int类型数据相关的知识,希望对你有一定的参考价值。

<select id="selectByBusIdentifyExcludeId" parameterType="java.util.Map"
resultType="int">
select count(1) from base_bus where bus_identify =
#busIdentify,jdbcType=VARCHAR
<if test="id != null and id != '' ">
and id <![CDATA[<>]]>
#id, jdbcType=INTEGER
</if>
</select>
这段代码为什么总是返回0;mysql中确实有bus_identify = #busIdentify,jdbcType=VARCHAR的行。
主要是想应用在数据库中的唯一键的。

MyBatis中在查询进行select映射的时候,返回类型可以用resultType,也可以用resultMap,resultType是直接表示返回类型的,而resultMap则是对外部ResultMap的引用,但是resultType跟resultMap不能同时存在。在MyBatis进行查询映射的时候,其实查询出来的每一个属性都是放在一个对应的Map里面的,其中键是属性名,值则是其对应的值。当提供的返回类型属性是resultType的时候,MyBatis会将Map里面的键值对取出赋给resultType所指定的对象对应的属性。所以其实MyBatis的每一个查询映射的返回类型都是ResultMap,只是当我们提供的返回类型属性是resultType的时候,MyBatis对自动的给我们把对应的值赋给resultType所指定对象的属性,而当我们提供的返回类型是resultMap的时候,因为Map不能很好表示领域模型,我们就需要自己再进一步的把它转化为对应的对象,这常常在复杂查询中很有作用。 参考技术A <if test="id != null and id != '' ">
and id <![CDATA[<>]]>
#id, jdbcType=INTEGER
</if>
这个条件呢?如果条件成立,里面的判断有没有满足的呢?追问

这个条件是用于修改的时候判断唯一键bus_identify是否被修改,如果没有修改的话还是可以存储的。

追答

select count(1) from base_bus where bus_identify = (busIdentify),这样你说有记录;

select count(1) from base_bus where bus_identify = (busIdentify) and id (id);这样有没有记录存在?不清楚你要做什么,但是后面and后面的条件不满足,显然会是0啊。

追问

谢谢您的回答,是缓存的问题,今天运行成功了。

MyBatis的传入参数parameterType类型

1. MyBatis的传入参数parameterType类型分两种

   1. 1. 基本数据类型:int,string,long,Date;

   1. 2. 复杂数据类型:类和Map

 

2. 如何获取参数中的值:

   2.1  基本数据类型:#{参数} 获取参数中的值

   2.2  复杂数据类型:#{属性名}  ,map中则是#{key}

 

3.案例:

 

 3.1 基本数据类型案例

[html] view plain copy
  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
  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
  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中包含数组的情况

[html] 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>  



4.注意点:

   记住这些

 

原文转载来自 http://blog.csdn.net/u010235716/article/details/51698422



以上是关于mybatis中传入map类型的数据返回int类型数据的主要内容,如果未能解决你的问题,请参考以下文章

mybatis传入map参数parameterType

MyBatis之传入参数

MyBatis的传入参数parameterType类型

MyBatis之传入参数parameterType

mybatis

Java--MyBatis传入参数parameterType