1. 程式人生 > >mybatis的@Param註解和引數

mybatis的@Param註解和引數

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註解來宣告引數時,必須使用使用 #{}方式。如果使用 ${} 的方式,會報錯。

    @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);

例項一 @Param註解單一屬性

dao層示例

Public User selectUser(@param(“userName”) String name, @param(“userpassword”) String password);

xml對映對應示例

  1. <selectid=" selectUser"resultMap="BaseResultMap">
  2.    select  *  from user_user_t   where user_name = #{userName,jdbcType=VARCHAR
    } and user_password=#{userPassword,jdbcType=VARCHAR}  
  3. </select>

注意:採用#{}的方式把@Param註解括號內的引數進行引用(括號內參數對應的是形參如 userName對應的是name);

例項二 @Param註解JavaBean物件

dao層示例

public List<user> getUserInformation(@Param("user") User user);

xml對映對應示例

  1. <selectid="getUserInformation"parameterType="com.github.demo.vo.User"resultMap="userMapper">
  2.         select   
  3.         <includerefid="User_Base_Column_List"/>
  4.         from mo_user t where 1=1
  5.                       <!-- 因為傳進來的是物件所以這樣寫是取不到值的 -->
  6.             <iftest="user.userName!=null  and user.userName!=''">   and   t.user_name = #{user.userName}  </if>
  7.             <iftest="user.userAge!=null  and user.userAge!=''">   and   t.user_age = #{user.userAge}  </if>
  8.     </select>