MyBatis可以使用的基本数据类型和Java的复杂数据类型。
基本数据类型,String,int,date等。
但是使用基本数据类型,只能提供一个参数,所以多参数可以使用Java实体类,或Map类型做参数类型。通过#{}或${}可以直接得到其属性。
基本类型参数
List<StudentEntity> studentList = studentMapper.getStudentListByDate(StringUtil.parse("2007-9-1"));
2.<select id="getStudentListByDate" parameterType="Date" resultMap="studentResultMap">
3. SELECT *
4. FROM STUDENT_TBL ST LEFT JOIN CLASS_TBL CT ON ST.CLASS_ID = CT.CLASS_ID
5. WHERE CT.CLASS_YEAR = #{classYear};
6.</select>
Java实体类型参数
1.StudentEntity entity = new StudentEntity();
2.entity.setStudentName("李");
3.entity.setStudentSex("男");
4.List<StudentEntity> studentList = studentMapper.getStudentListWhereEntity(entity);
2.<select id="getStudentListWhereEntity" parameterType="StudentEntity" resultMap="studentResultMap">
3. SELECT * from STUDENT_TBL ST
4. WHERE ST.STUDENT_NAME LIKE CONCAT(CONCAT('%', #{studentName}),'%')
5. AND ST.STUDENT_SEX = #{studentSex}
6.</select>
Map参数
Map<String, String> map = new HashMap<String, String>();
map.put("sex", "女");
map.put("name", "李");
List<StudentEntity> studentList = studentMapper.getStudentListWhereMap(map);
<select id="getStudentListWhereMap" parameterType="Map" resultMap="studentResultMap">
SELECT * from STUDENT_TBL ST
WHERE ST.STUDENT_SEX = #{sex}
<span style="font-family: Arial, Helvetica, sans-serif;"> AND ST.STUDENT_SEX = #{sex}
</select></span>
多参数的实现
如果想传入多个参数,则需要在接口的参数上添加@Param注解。
public List<StudentEntity> getStudentListWhereParam(@Param(value = "name") String name, @Param(value = "sex") String sex, @Param(value = "birthday") Date birthdar, @Param(value = "classEntity") ClassEntity classEntity);
2.<select id="getStudentListWhereParam" resultMap="studentResultMap">
3. SELECT * from STUDENT_TBL ST
4. <where>
5. <if test="name!=null and name!='' ">
6. ST.STUDENT_NAME LIKE CONCAT(CONCAT('%', #{name}),'%')
7. </if>
8. <if test="sex!= null and sex!= '' ">
9. AND ST.STUDENT_SEX = #{sex}
10. </if>
11. <if test="birthday!=null">
12. AND ST.STUDENT_BIRTHDAY = #{birthday}
13. </if>
14. <if test="classEntity!=null and classEntity.classID !=null and classEntity.classID!='' ">
15. AND ST.CLASS_ID = #{classEntity.classID}
16. </if>
17. </where>
18.</select>
字符串代入
默认的情况下,使用#{}语法会促使MyBatis 生成PreparedStatement 属性并且使用PreparedStatement 的参数(=?)来安全的设置值。尽量这些是快捷安全,也是经常使用的。但有时候你可能想直接未更改的字符串代入到SQL 语句中。注:一般情况下尽量用#{},安全性防注入,#{}会把参数转换成字符串,参数是数字才用${}
cache缓存
MyBatis 包含一个强在的、可配置、可定制的缓存机制。MyBatis 3 的缓存实现有了许多改进,既强劲也更容易配置。默认的情况,缓存是没有开启,除了会话缓存以外,它可以提高性能,且能解决全局依赖。开启二级缓存,你只需要在SQL 映射文件中加入简单的一行:<cache/>
这句简单的语句的作用如下:
1. 所有在映射文件里的select 语句都将被缓存。
2. 所有在映射文件里insert,update 和delete 语句会清空缓存。
3. 缓存使用“最近很少使用”算法来回收
4. 缓存不会被设定的时间所清空。
5. 每个缓存可以存储1024 个列表或对象的引用(不管查询出来的结果是什么)。
6. 缓存将作为“读/写”缓存,意味着获取的对象不是共享的且对调用者是安全的。不会有其它的调用
7. 者或线程潜在修改。
例如,创建一个FIFO 缓存让60 秒就清空一次,存储512 个对象结果或列表引用,并且返回的结果是只读。因为在不用的线程里的两个调用者修改它们可能会导致引用冲突。
1.<cache eviction="FIFO" flushInterval="60000" size="512" readOnly="true">
2.</cache>
还可以在不同的命名空间里共享同一个缓存配置或者实例。在这种情况下,你就可以使用cache-ref 来引用另外一个缓存。
<cache-ref namespace="com.liming.manager.data.StudentMapper"/>
上面说到了基本数据类型参数 实体类参数 和Map类型参数,下面说一下当参数是collection的时候
final List<Integer> ids = new ArrayList<Integer>();
ids.add(1);
ids.add(2);
ids.add(3);
ids.add(6);
ids.add(7);
ids.add(9);
Map<String, Object> params = new HashMap<String, Object>();
params.put("ids", ids);
params.put("title", "中国");
List<Blog> blogs = blogMapper.dynamicForeach3Test(params);
<select id="dynamicForeach3Test" resultType="Blog">
select * from t_blog where title like "%"#{title}"%" and id in
<foreach collection="ids" index="index" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</select>
foreach的主要用在构建in条件中,它可以在SQL语句中进行迭代一个集合。foreach元素的属性主要有 item,index,collection,open,separator,close。item表示集合中每一个元素进行迭代时的别名,index指定一个名字,用于表示在迭代过程中,每次迭代到的位置,open表示该语句以什么开始,separator表示在每次进行迭代之间以什么符号作为分隔符,close表示以什么结束,在使用foreach的时候最关键的也是最容易出错的就是collection属性,该属性是必须指定的,但是在不同情况下,该属性的值是不一样的,主要有一下3种情况:
1.
2.
3.