参考官网
1. 底层
- 底层是ParamNameResolver类
- 查看getNameParams方法实现
2. 获取参数的两种方式
MyBatis获取参数值的两种方式:
- ${} : 本质就是字符串拼接
- #{} :本质就是占位符赋值
3. 多种情况的获取情况
单参数情况:
a. 单参数-单个字面量类型
此时可以使用KaTeX parse error: Expected 'EOF', got '#' at position 4: {}和#̲{}以任意的名称获取参数的值,…{}需要手动加单引号
#{}写法:
select * from t_user where username = #{username}
${}写法:
select * from t_user where username = '${username}
b. 单参数-对象类型-POJO类型
直接使用,属性名和参数占位符名称一致即可。
如:
@Mapper
public interface TbBrandMapper {List<TbBrand> selectByCondition(User user);
}
sql:
<select id="selectByCondition" resultMap="BaseResultMap">select *from tb_userwhere status = #{status}and brand_name like #{brandName}and company_name like #{companyName}</select>
注:只要查询的参数占位符和对象的属性名一致即可。
c. 单参数-Map集合参数
直接使用,键名和参数占位符名称一致即可。和对象使用相似
如:
@Mapper
public interface TbBrandMapper {List<TbBrand> selectByCondition(Map map);
}
sql:
<select id="selectByCondition" resultMap="BaseResultMap">select *from tb_userwhere status = #{status}and brand_name like #{brandName}and company_name like #{companyName}</select>
注:只要查询的参数占位符和map的key值一致即可。
d. 单参数-Collection
底层会封装到Map集合,可以使用@Param注解,替换Map集合中默认的arg键名
map中会存放:如下
map.put("arg0",collection集合);
map.put("collection",collection集合);
获取的时候,可以通过arg0获取,或collection获取。
*但是建议使用@Param注解,替换Map集合中默认的arg键名进行获取
如:
@Mapper
public interface TbBrandMapper {List<TbBrand> selectByCondition(@Param("coll") Collection coll);
}
map会覆盖掉arg:如:map变为
map.put("coll",collection集合);
map.put("collection",collection集合);
e. 单参数-LIit:
底层会封装到Map集合,可以使用@Param注解,替换Map集合中默认的arg键名
map中会存放:如下
map.put("arg0",List集合);
map.put("collection",List集合);
map.put("List",List集合);
获取的时候,可以通过arg0获取,或collection获取。
*但是建议使用@Param注解,替换Map集合中默认的arg键名进行获取
如:
@Mapper
public interface TbBrandMapper {List<TbBrand> selectByCondition(@Param("listtemp") List listtemp);
}
map会覆盖掉arg:如:map变为
map.put("listtemp",List集合);
map.put("collection",List集合);
map.put("List",List集合);
f. 单参数-array
底层会封装到Map集合,可以使用@Param注解,替换Map集合中默认的arg键名
map中会存放:如下
map.put("arg0",数组);
map.put("array",数组);
获取的时候,可以通过arg0获取,或collection获取。
*但是建议使用@Param注解,替换Map集合中默认的arg键名进行获取
如:
@Mapper
public interface TbBrandMapper {List<TbBrand> selectByCondition(@Param("arr") int[] arr);
}
map会覆盖掉arg:如:map变为
map.put("arr",数组);
map.put("array",数组);
g. 多个参数
底层会封装到Map集合,可以使用@Param注解,替换Map集合中默认的arg键名
map.put("argo",参数值1)
map.put("param1",参数值1)map.put("agr1",参数值2)
map.put("param2",参数值2)
如下案例:
List<TbBrand> selectByCondition(@Param("status") int status,@Param("companyName") String companyName,);
map如下:
map.put("status",参数值1)
map.put("param1",参数值1)map.put("companyName",参数值2)
map.put("param2",参数值2)