Mybatis傳多個參數(三種解決方案) mapper.xml的sql語句修改!
阿新 • • 發佈:2019-01-25
修改 and 接收 select sql 函數 resultmap rom var
第一種
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傳多參數.
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>
第三種
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>
Mybatis傳多個參數(三種解決方案) mapper.xml的sql語句修改!