${}
的本质就是字符串拼接#{}
的本质就是占位符赋值${}
使用字符串拼接的方式拼接sql,若为字符串类型或日期类型的字段进行赋值时,需要手动加单引号#{}
使用占位符赋值的方式拼接sql,此时为字符串类型或日期类型的字段进行赋值时,可以自动添加单引号
${}
和#{}
以任意的名称(最好见名识意)获取参数的值,注意${}
需要手动加单引号使用${}
<select id="getUserByUsername" resultType="user">
select * from t_user where username = '${username}'
select>
使用#{}
<select id="getUserByUsername" resultType="user">
select * from t_user where username = #{username}
select>
若mapper接口中的方法参数为多个时
arg0, arg1...
为键,以参数为值param1 , param2...
为键,以参数为值#{}
和{}
以键的方式访问值即可,但是需要注意${}
的单引号问题以arg0, arg1...
为键
<select id="checkUser" resultType="user">
select * from t_user where username = '${param1}' and password = '${param2}'
select>
以param1 , param2...
为键
<select id="checkUser" resultType="user">
select * from t_user where username = #{arg0} and password = #{arg1}
select>
若mapper接口中的方法需要的参数为多个时
${}
和#{}
访问map集合的键就可以获取相对应的值,注意${}
需要手动加单引号
<select id="checkLoginByMap" resultType="user">
select * from t_user where username = #{username} and password = #{password}
select>
@Test
public void checkLoginByMap() {
SqlSession sqlSession = SqlSessionUtils.getSqlSession();
ParameterMapper mapper = sqlSession.getMapper(ParameterMapper.class);
Map<String, Object> map = new HashMap<>();
map.put("username", "李四");
map.put("password", "123");
User user = mapper.checkLoginByMap(map);
System.out.println(user);
}
若mapper接口中的方法参数为实体类对象时此时可以使用${}
和#{}
,通过访问实体类对象中的属性名获取属性值,注意${}需要手动加单引号
<update id="insertUser">
insert into t_user values(null,#{username},#{password},#{age},#{sex},#{email})
update>
@Test
public void testInsertUser() {
SqlSession sqlSession = SqlSessionUtils.getSqlSession();
ParameterMapper mapper = sqlSession.getMapper(ParameterMapper.class);
int rows = mapper.insertUser(new User(null, "张三", "123", 23, "男", "[email protected]"));
System.out.println("受影响的行数: " + rows);
}
@Param
注解的value属性值为键,以参数为值;param1,param2...
为键,以参数为值;@Param
不仅是用在多个参数时,单个参数也可以使用
${}
和#{}
括号内就不能写任意值,只能使用@Param
注解的value属性值,才能取出数据${}
和#{}
访问map集合的键就可以获取相对应的值,注意${}
需要手动加单引号多个参数
public interface ParameterMapper {
User getUserByParam(@Param("username") String username, @Param("password") String password);
......
<select id="getUserByParam" resultType="user">
select * from t_user where username = #{username} and password = #{password}
select>
@Test
public void testGetUserByParam() {
SqlSession sqlSession = SqlSessionUtils.getSqlSession();
ParameterMapper mapper = sqlSession.getMapper(ParameterMapper.class);
User user = mapper.getUserByParam("李四","123");
System.out.println(user);
}
public interface ParameterMapper {
User getUserByOnParam(@Param("username") String username);
<select id="getUserByOnParam" resultType="user">
select * from t_user where username = #{username}
select>
建议将MyBatis获取参数值分两种情况:
@Param
标识参数