對於使用Mybatis ,傳多個參數,咱們可使用對象封裝外,還能夠直接傳遞參數web
對象的封裝,例如查詢對象條件basequery對象sql
<select id="getProductByProductQuery" parameterType="com.niulande.product.query.BaseQuery" resultMap="BaseResultMap"> select <include refid="Base_Column_List" /> from pd_product <include refid="whereSql"/> </select> <sql id= "whereSql" > <where> <if test="gameCode != null and gameCode != ''" > and game_type_coding = #{gameCode} </if> <if test="goodsTypeId != null"> and goods_type_id = #{goodsTypeId} </if> <if test="accId != null"> and account_id = #{accId} </if> <if test="delFlag != null"> and del_flag = #{delFlag} </if> </where> limit #{start},#{rows} </sql> </mapper>
直接傳遞參數mybatis
例如:app
mapper方法spa
selectByGameIdAndGoodsTypeId(Long gameTypeId, Long goodsTypeId);
對應的xml文件方法:code
<select id="selectByGameIdAndGoodsTypeId" resultMap="BaseResultMap"> select <include refid="Base_Column_List" /> from pd_game_goods_type_mid where game_type_id = #{gameTypeId} AND goods_type_id = #{goodsTypeId} </select>
第一:在select標籤後就再也不使用parameterType,由於這個標籤只能指定一個參數,而兩個參數及以上的,則不用再使用orm
第二:在sql語句裏面以上的寫法是錯誤的(爲了演示執行報錯)xml
會報錯對象
Parameter '0' not found. Available parameters are [arg1, arg0, param1, param2] 注意這裏使用的mybatis的版本號 在MyBatis3.4.4版不能直接使用#{0}要使用 #{arg0}blog
0是指參數的索引,從0開始。第一個參數是0,第二個參數是1,依次類推
如下正確的寫法:
<select id="selectByGameIdAndGoodsTypeId" resultMap="BaseResultMap"> select <include refid="Base_Column_List" /> from pd_game_goods_type_mid where game_type_id = #{arg0} AND goods_type_id = #{arg1} </select>
第三種:
<select id="selectByGameIdAndGoodsTypeId" resultMap="BaseResultMap"> select <include refid="Base_Column_List" /> from pd_game_goods_type_mid where game_type_id = #{gameTypeId} AND goods_type_id = #{goodsTypeId} </select>
剛剛說這樣的會報錯。解決辦法,更改mapper方法
加上@Param註解
selectByGameIdAndGoodsTypeId(@Param("gameTypeId")Long gameTypeId, @Param("goodsTypeId") Long goodsTypeId)