自定義對象也用@param註解.mybatis
在mapper.xml中使用的時候,#{對象別名.屬性名},如#{user.userName}app
注意,使用了@pram註解的話在mapper.xml不加parameterType。函數
public List<UserExtension> selectUser( @Param("user") UserExtension user);
<select id=" selectUser" resultMap="BaseResultMap"> select * from user_user_t where user_name = #{user.userName,jdbcType=VARCHAR} and user_area=#{user.userArea,jdbcType=VARCHAR} </select>
select 裏面的#{user.userName}的user是@Param("user")裏的user, 與UserExtension user 無關。UserExtension user 的參數能夠是任何有效的變量。如:UserExtension userExtension。只要@Param("user")裏的參數不變,就不會影響都select裏的。code
第一種方案xml
DAO層的函數方法對象
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層中第二參數,更多參數一致日後加便可。開發
第二種方案get
此方法採用Map傳多參數.hash
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>
Service層調用
Private User xxxSelectUser(){ Map paramMap=new hashMap(); paramMap.put(「userName」,」對應具體的參數值」); paramMap.put(「userArea」,」對應具體的參數值」); User user=xxx. selectUser(paramMap);}
我的認爲此方法不夠直觀,見到接口方法不能直接的知道要傳的參數是什麼。
第三種方案
Dao層的函數方法
Public User selectUser(@param(「userName」)String name,@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>
我的以爲這種方法比較好,能讓開發者看到dao層方法就知道該傳什麼樣的參數,比較直觀,我的推薦用此種方案。