美文网首页
Mybatis——在Mapper中使用多个参数

Mybatis——在Mapper中使用多个参数

作者: likly | 来源:发表于2017-08-18 17:10 被阅读0次

Mapper的方法声明中使用多个参数。

  • 使用@Param注解

Mapper方法声明

import org.apache.ibatis.annotations.Param;
public interface UserMapper {
   User selectUser(@Param("username") String username, @Param("password") String password);
}

Mapper.xml中使用

<select id=”selectUser” resultType=”User”>
  select id, username, hashedPassword
  from some_table
  where username = #{username}
  and password = #{password}
</select>

相关文章

网友评论

      本文标题:Mybatis——在Mapper中使用多个参数

      本文链接:https://www.haomeiwen.com/subject/hobarxtx.html