传递业务参数给sql语句,可用于动态拼接sql语句。在xml中的select标签中,参数节点parameterType 只有一个。
如果只有一个参数好说,比如按照id查询,可以直接使用;但如果想传递多个参数就要使用类型封装,或者使用集合。
下面按照单个参数和多个参数加以讨论。
1.单个参数
一个参数,也就是一个基本类型或者String类型的参数。比如按照id从人员信息表person中查找符合条件的人。
如果只传递一个参数,则在parameterType 节点中声明数据类型(为Java类型),然后在sql语句的占位符中可以写成
id= #{_parameter}
或者随便写点啥,一般写成列名称 例如:
id= #{id}
示例代码片段:
<!--带有查询一个查询参数的查询,按照id查询-->
<select id="selectOnePerson" parameterType="int" resultMap="PersonResult">
SELECT ID,NAME,SEX,ADDRESS FROM person WHERE ID = #{id}
</select>
或者
<select id="selectOnePerson" parameterType="int" resultMap="PersonResult">
SELECT ID,NAME,SEX,ADDRESS FROM person WHERE ID = #{_parameter}
</select>
2.多个参数
如果需要传递多个参数的话,我们使用一个类封装或者使用集合。
2.1 使用封装类
如果使用封装类,则在parameterType节点声明封装类型的完整限定名(包名.类名),例如
parameterType="com.xiaozhao.bean.Person"
然后在sql语句的占位符中直接使用封装类中的属性名,假设上诉Person类中有一个name属性,例如
NAME = #{name}
示例代码片段:
<!--带有多个参数的查询,且根据参数是否有效动态拼接sql-->
<select id="queryPersonList" parameterType="com.xiaozhao.bean.Person" resultMap="PersonResult">
SELECT ID,NAME,SEX,ADDRESS FROM person WHERE 1=1
<if test="name!=null and !"".equals(name.trim())">
and NAME = #{name}
</if>
</select>
2.2 使用集合(数组,List,Map)
如果使用集合则稍有不同,但是整体流程差不多,如下表所示:
容器分类 | 元素为基本类型或String | 元素为对象 |
---|---|---|
array | array[index] | array[index].propertyName |
list | list[index] | list[index].propertyName |
map | keyName | keyName.propertyName |
说明:
其中第二列的写法是固定的,不要随便命名。
array和list中的index就是索引号
map中的keyName就为键名称
map取值一般是需要知道键名称的,但是array和list一般是不知道具体index索引号的,除非是0,一般需要配合for标签使用。
例如:
<foreach index="i" collection="list" item="item" separator=",">
#{item}
</foreach>
如果是list或者array,则i为索引号,item为元素项目。
如果是map,则i为键名称,item为值
代码示例
2.2.1 Map
1)基本类型
假设有如下map
Map<String, String> map = new HashMap<String, String>(2);
map.put("name", "Jim");
map.put("sex", 1);
sql代码如下:
<select id="searchByPrimitiveMap" resultMap="PersonResult" parameterType="java.util.Map">
SELECT ID,NAME,SEX,ADDRESS FROM person
<where>
<if test="sex!=null">
and sex=#{sex}
</if>
<if test="name!=null">
and name=#{name}
</if>
</where>
</select>
2)对象类型
假设有如下map,内部元素为对象类型
public class Person {
private long id;
private String name;
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
Map<String, Person> map = new HashMap<String, Person>(2);
Person teacher = new Person();
teacher.setId(1);
teacher.setName("Steve");
map.put("teacher",teacher);
sql代码如下:
<select id="searchByObjectMap" resultMap="PersonResult" parameterType="java.util.Map">
SELECT ID,NAME,SEX,ADDRESS FROM person
<where>
<if test="teacher.sex!=null">
and sex=#{teacher.sex}
</if>
<if test="teacher.name!=null">
and name=#{teacher.name}
</if>
</where>
</select>
2.2.2 数组或list
1)基本类型
<!--根据数组查询,基本类型-->
<select id="searchByPrimitiveArray" resultMap="courseResult" parameterType="java.util.List">
SELECT id,name,point FROM course WHERE id IN (
<foreach collection="array" item="item" separator=",">
#{item}
</foreach>
)
</select>
2)对象类型
基本相同,所不同的就是sql占位符处需要加上属性名称,其他省略
#{item.id}
list用法相同,差别在于foreach标签的collection节点需要修改为llist
网友评论