spring中@param和mybatis中@param使用差異

spring中@paramhtml

/**
      * 查詢指定用戶和企業關聯有沒有配置角色
      * @param businessId  memberId
      * @return
      */
     int selectRoleCount(@Param("businessId") Integer businessId,@Param("memberId") Long memberId); 

mybatis中的param

 /**
      * 查詢指定用戶和企業關聯有沒有配置角色
      * @param businessId memberId
      * @return
      */
     int selectRoleCount(@Param("businessId") Integer businessId,@Param("memberId") Long memberId); 

從表面上看,兩種並無差異,但是在xml文件裏使用的時候是有差異的。Spring中的@param在xml需要例如如下這樣引用變量

<select id="selectRoleCount" resultType="java.lang.Integer" >
select 
    count(tbm.id)
    from t_business_member_relation tbm
    where tbm.business_id = #{0,jdbcType=INTEGER}
    and tbm.member_id = #{1,jdbcType=INTEGER}
    and tbm.role_business_id is not null
</select>

是依據參數的順序來取值的,並且從0開始。而在mybatis @param在xml中則是例如如下這樣引用變量的

<select id="selectRoleCount" resultType="java.lang.Integer" >
    select 
    count(tbm.id)
    from t_business_member_relation tbm
    where tbm.business_id = #{businessId,jdbcType=INTEGER}
    and tbm.member_id = #{memberId,jdbcType=INTEGER}
    and tbm.role_business_id is not null
 </select>

是經過參數名來引用的
注:假設Mapper.java文件裏引用的是Spring的java

org.springframework.data.repository.query.Param;

但是Mapper.xml中使用的是mybatis 的使用方法,那麼就會例如如下的錯誤spring

org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'businessId' not found. Available parameters are [1, 0, param1, param2]

截圖例如如下
這裏寫圖片描寫敘述 因此在使用的時候必定要注意@param引用和使用的一致性
相關文章
相關標籤/搜索