1,#{}和${}的区别?
-
#{}是占位符,预编译处理;${}是拼接符,仅字符串替换。
-
#{} 对应的变量自动加上单引号 ‘’;变量替换后,${} 对应的变量不会加上单引号 ‘’
-
#{} 可以有效的防止SQL注入,提高系统安全性;${} 不能防止SQL 注入
-
#{} 的变量替换是在DBMS 中;${} 的变量替换是在 DBMS 外
2, 模糊查询要怎么写?
- ’%${question}%’ 可能引起SQL注入,可以用但不推荐
- "%"#{question}"%" 注意:因为#{…}解析成sql语句时候,会在变量外侧自动加单引号’ ',所以这里 % 需要使用双引号" ",不能使用单引号 ’ ',会查不到任何结果。
- CONCAT(’%’,#{question},’%’) 使用CONCAT()函数,推荐
- 使用bind标签
3,MyBatis接口绑定(指的就是mapper或repository如何与xml进行绑定),有几种方式?
接口绑定,就是在MyBatis中任意定义接口,然后把接口里面的方法和SQL语句绑定,我们直接调用接口方法就可以,这样比起原来了SqlSession提供的方法我们可以有更加灵活的选择和设置。
接口绑定有两种实现方式
- 通过注解绑定,就是在接口的方法上面加上 @Select、@Update等注解,里面包含Sql语句来绑定;
- 通过xml里面写SQL来绑定, 在这种情况下,要指定xml映射文件里面的namespace必须为接口的全路径名。当Sql语句比较简单时候,用注解绑定, 当SQL语句比较复杂时候,用xml绑定,一般用xml绑定的比较多。
4,谈谈MyBatis一级缓存和二级缓存,分别怎么开启?
- 一级缓存: 基于 PerpetualCache 的 HashMap 本地缓存,其存储作用域为 SqlSession,当 SqlSession被手动flush或close之后,该 SqlSession 中的所有 Cache 就将清空,一级缓存默认是打开的。
- 二级缓存与一级缓存其机制相同,默认也是采用 PerpetualCache的HashMap 存储,不同在于其存储作用域为 Mapper(Namespace), 开启二级缓存如下;
<configuration> <settings> <!-- 手动开启二级缓存--> <setting name="cacheEnabled" value="true"/> <!-- 启动懒加载--> <setting name="lazyLoadingEnabled" value="true"/> <setting name="logImpl" value="STDOUT_LOGGING"/> </settings> </configuration>
- 对于缓存数据更新机制,当某一个作用域(一级缓存 SqlSession/二级缓存Namespaces)的进行了C/U/D 操作后,默认该作用域下所有 select 中的缓存将被 clear。
5,MyBatis支持延迟加载吗?实现原理是什么?
支持
实现原理:动态代理。
6,MyBatis怎么实现一对多(A对B)?
- 对象A中添加B对象以及getter setter方法
package com.example.demo.model;
import lombok.Data;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.List;
@Entity
@Table(name = "UserType")
@Data
public class UserType {
private long id;
private String userType;
private String typeName;
private List<User> userList;
public UserType() {
}
public UserType(long id, String userType, String typeName) {
this.id = id;
this.userType = userType;
this.typeName = typeName;
}
@Id
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
@Column(name = "userType", length = 50)
public String getUserType() {
return userType;
}
public void setUserType(String userType) {
this.userType = userType;
}
@Column(name = "typeName", length = 50)
public String getTypeName() {
return typeName;
}
public void setTypeName(String typeName) {
this.typeName = typeName;
}
public List<User> getUserList() {
return userList;
}
public void setUserList(List<User> userList) {
this.userList = userList;
}
}
- A.xml里用Collection添加BList,查询里加入连接查询
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.example.demo.mappers.UserTypeMapper" >
<resultMap id="BaseResultMap" type="com.example.demo.model.UserType" >
<id column="id" property="id" jdbcType="BIGINT" />
<id column="usertype" property="userType" jdbcType="VARCHAR" />
<id column="typename" property="typeName" jdbcType="VARCHAR"/>
<!--1 to miltiple-->
<collection property="userList" ofType="com.example.demo.model.User" javaType="java.util.List">
<id column="id" property="id" jdbcType="BIGINT" />
<id column="name" property="name" jdbcType="VARCHAR" />
<id column="sex" property="sex" jdbcType="VARCHAR"/>
<id column="usertype" property="userType" jdbcType="VARCHAR"/>
</collection>
</resultMap>
<select id="getUserListByUserType" parameterType="java.util.Map" resultMap="BaseResultMap" >
select u.id, u.name, u.sex, u.usertype
from user_type t, user u where u.usertype = t.usertype
<if test="usertype != null">
and t.usertype = #{t.usertype}
</if>
</select>
</mapper>
7 MyBatis事务怎么开启?
1,启动类加@EnableTransactionManagement
2,Service实现类或方法上加@Transactional