一.xml形式
實例一 @Param注解單一屬性
dao層示例
Public User selectUser(@param(“userName”) String name, @param(“userpassword”) String password);
xml映射對應示例
<select id=" selectUser" resultMap="BaseResultMap">
select * from user_user_t
where user_name = #{userName,jdbcType=VARCHAR} and user_password=#{userPassword,jdbcType=VARCHAR}
</select>
注意:采用#{}的方式把@Param注解括號內的參數進行引用(括號內參數對應的是形參如 userName對應的是name);
實例二 @Param注解JavaBean對象
dao層示例
public List<user> getUserInformation(@Param("user") User user);
xml映射對應示例
<select id="getUserInformation" parameterType="com.github.demo.vo.User" resultMap="userMapper">
select
<include refid="User_Base_Column_List"/>
from mo_user t where 1=1
<!-- 因為傳進來的是對象所以這樣寫是取不到值得 -->
<if test="user.userName!=null and user.userName!=''"> and t.user_name = #{user.userName} </if>
<if test="user.userAge!=null and user.userAge!=''"> and t.user_age = #{user.userAge} </if>
</select>
二.注解形式
1,使用@Param注解
當以下面的方式進行寫SQL語句時:
@Select("select column from table where userid = #{userid} ")
public int selectColumn(int userid);
當你使用了使用@Param注解來聲明參數時,如果使用 #{} 或 ${} 的方式都可以。
@Select("select column from table where userid = ${userid} ")
public int selectColumn(@Param("userid") int userid);
當你不使用@Param注解來聲明參數時,必須使用使用 #{}方式。如果使用 \({} 的方式,會報錯。**或者在mybatis中mapper文件中像這樣寫\){_parameter},你只需要傳入一條String類型的字符串。sql語句他就可以直接執行了,所以可以在動態配置的時候使用到該參數的含義:當只有一個參數,可以使用_parameter,它就代表了這個參數,如果使用@Param的話,會使用指定的參數值代替**
@Select("select column from table where userid = ${userid} ")
public int selectColumn(@Param("userid") int userid);
2,不使用@Param注解
不使用@Param注解時,參數只能有一個,並且是Javabean。在SQL語句里可以引用JavaBean的屬性,而且只能引用JavaBean的屬性。
// 這里id是user的屬性
@Select("SELECT * from Table where id = ${id}")
Enchashment selectUserById(User user);