Mybatis常见⾯试题(10个必备⾯试题)
⽬录
⾯试题⼀:什么是Mybatis?
(1)Mybatis是⼀个半ORM(对象关系映射)框架,它内部封装了JDBC,加载驱动、创建连接、创建statement等繁杂的过程,开发者开发时只需要关注如何编写SQL语句,可以严格控制sql执⾏性能,灵活度⾼。
(2)作为⼀个半ORM框架,MyBatis 可以使⽤ XML 或注解来配置和映射原⽣信息,将 POJO映射成数据库中的记录,避免了⼏乎所有的 JDBC 代码和⼿动设置参数以及获取结果集。
(3)通过xml ⽂件或注解的⽅式将要执⾏的各种 statement 配置起来,并通过java对象和 statement中sql的动态参数进⾏映射⽣成最终执⾏的sql语句,最后由mybatis框架执⾏sql并将结果映射为java对象并返回。(从执⾏sql到返回result的过程)。
(4)由于MyBatis专注于SQL本⾝,灵活度⾼,所以⽐较适合对性能的要求很⾼,或者需求变化较多的项⽬,如互联⽹项⽬。
⾯试题⼆:Mybaits的优缺点?
(1)优点:
① 基于SQL语句编程,相当灵活,不会对应⽤程序或者数据库的现有设计造成任何影响,SQL写在XML⾥,解除sql与程序代码的耦
合,便于统⼀管理;提供XML标签,⽀持编写动态SQL语句,并可重⽤。
② 与JDBC相⽐,减少了50%以上的代码量,消除了JDBC⼤量冗余的代码,不需要⼿动开关连接;
③ 很好的与各种数据库兼容(因为MyBatis使⽤JDBC来连接数据库,所以只要JDBC⽀持的数据库MyBatis都⽀持)。
④ 能够与Spring很好的集成;
⑤ 提供映射标签,⽀持对象与数据库的ORM字段关系映射;提供对象关系映射标签,⽀持对象关系组件维护。
(2)缺点:
① SQL语句的编写⼯作量较⼤,尤其当字段多、关联表多时,对开发⼈员编写SQL语句的功底有⼀定要求。
② SQL语句依赖于数据库,导致数据库移植性差,不能随意更换数据库。
⾯试题三:#{}和${}的区别是什么?
${}是字符串替换,#{}是预处理;
Mybatis在处理${}时,就是把${}直接替换成变量的值。⽽Mybatis在处理#{}时,会对sql语句进⾏预处理,将sql中的#{}替换为?号,调⽤PreparedStatement的set⽅法来赋值;
使⽤#{}可以有效的防⽌SQL注⼊,提⾼系统安全性。
⾯试题四:Mybatis的Xml映射⽂件中,不同的Xml映射⽂件,id是否可以重复?
不同的Xml映射⽂件,如果配置了namespace,那么id可以重复;如果没有配置namespace,那么id不能重复;
原因就是namespace+id是作为Map的key使⽤的,如果没有namespace,就剩下id,那么,id重复会导致数据互相覆盖。有了namespace,⾃然id就可以重复,namespace不同,namespace+id⾃然也就不同。
备注:在旧版本的Mybatis中,namespace是可选的,不过新版本的namespace已经是必须的了。
⾯试题五:Mybatis是如何进⾏分页的?分页插件的原理是什么?
Mybatis使⽤RowBounds对象进⾏分页,它是针对ResultSet结果集执⾏的内存分页,⽽⾮物理分页。可以在sql内直接书写带有物理分页的参数来完成物理分页功能,也可以使⽤分页插件来完成物理分页。
分页插件的基本原理是使⽤Mybatis提供的插件接⼝,实现⾃定义插件,在插件的拦截⽅法内拦截待执⾏的sql,然后重写sql,根据dialect⽅⾔,添加对应的物
⾯试题六:Mybatis的⼀级、⼆级缓存?
(1)⼀级缓存: 基于 PerpetualCache 的 HashMap 本地缓存,其存储作⽤域为 Session,当 Session flush 或 close 之后,该Session 中的所有 Cache 就将清空,默认打开⼀级缓存。
(2)⼆级缓存与⼀级缓存其机制相同,默认也是采⽤ PerpetualCache,HashMap 存储,不同在于其存储作⽤域为
Mapper(Namespace),并且可⾃定义存储源,如 Ehcache。默认不打开⼆级缓存,要开启⼆级缓存,使⽤⼆级缓存属性类需要实现Serializable序列化接⼝(可⽤来保存对象的状态),可在它的映射⽂件中配置 ;
(3)对于缓存数据更新机制,当某⼀个作⽤域(⼀级缓存 Session/⼆级缓存Namespaces)的进⾏了C/U/D 操作后,默认该作⽤域下所有 select 中的缓存将被 clear 掉并重新更新,如果开启了⼆级缓存,则只根据配置判断是否刷新。
⾯试题七:Mybatis是如何将sql执⾏结果封装为⽬标对象并返回的?都有哪些映射形式?
第⼀种是使⽤标签,逐⼀定义数据库列名和对象属性名之间的映射关系。
第⼆种是使⽤sql列的别名功能,将列的别名书写为对象属性名。
有了列名与属性名的映射关系后,Mybatis通过反射创建对象,同时使⽤反射给对象的属性逐⼀赋值并返回,那些不到映射关系的属性,是⽆法完成赋值的。
⾯试题⼋:Mybatis动态sql有什么⽤?执⾏原理?有哪些动态sql?
Mybatis动态sql可以在Xml映射⽂件内,以标签的形式编写动态sql,执⾏原理是根据表达式的值 完成逻辑判断 并动态拼接sql的功能。
Mybatis提供了9种动态sql标签:trim | where | set | foreach | if | choose | when | otherwise | bind。
⾯试题九:使⽤MyBatis的mapper接⼝调⽤时有哪些要求?
Mapper接⼝⽅法名和l中定义的每个sql的id相同;
Mapper接⼝⽅法的输⼊参数类型和l中定义的每个sql 的parameterType的类型相同;
Mapper接⼝⽅法的输出参数类型和l中定义的每个sql的resultType的类型相同;
⾯试题⼗:笔试⼿写题
模糊查询like语句该怎么写?
第1种:在Java代码中添加sql通配符。
string wildcardname = “%smi%”;
list<name> names = mapper.selectlike(wildcardname);
<select id=”selectlike”>
select * from foo where bar like #{value}
</select>
基本的sql语句有哪些第2种:在sql语句中拼接通配符,会引起sql注⼊
string wildcardname = “smi”;
list<name> names = mapper.selectlike(wildcardname);
<select id=”selectlike”>
select * from foo where bar like "%"${value}"%"
</select>
当实体类中的属性名和表中的字段名不⼀样,怎么办?
第⼀种:通过在查询的sql语句中定义字段名的别名,让字段名的别名和实体类的属性名⼀致。
<select id=”selectorder” parametertype=”int” resultetype=”me.der”>
select order_id id, order_no orderno ,order_price price form orders where order_id=#{id};
</select>
第2种: 通过来映射字段名和实体类属性名的⼀⼀对应的关系。
<select id="getOrder" parameterType="int" resultMap="orderresultmap">
select * from orders where order_id=#{id}
</select>
<resultMap type=”me.der” id=”orderresultmap”>
<!–⽤id属性来映射主键字段–>
<id property=”id” column=”order_id”>
<!–⽤result属性来映射⾮主键字段,property为实体类属性名,column为数据表中的属性–>
<result property = “orderno” column =”order_no”/>
<result property=”price” column=”order_price” />
</reslutMap>
在mapper中如何传递多个参数?
(1)第⼀种:
//DAO层的函数
Public UserselectUser(String name,String area);
//对应的xml,#{0}代表接收的是dao层中的第⼀个参数,#{1}代表dao层中第⼆参数,更多参数⼀致往后加即可。<select id="selectUser"resultMap="BaseResultMap">
select *  fromuser_user_t  whereuser_name = #{0} anduser_area=#{1}
</select>
(2)第⼆种: 使⽤ @param 注解
public interface usermapper {
user selectuser(@param(“username”) string username,@param(“hashedpassword”) string hashedpassword); }
//然后,就可以在xml像下⾯这样使⽤(推荐封装为⼀个map,作为单个参数传递给mapper):
<select id=”selectuser” resulttype=”user”>
select id, username, hashedpassword
from some_table
where username = #{username}
and hashedpassword = #{hashedpassword}
</select>
(3)第三种:多个参数封装成map
try{
//映射⽂件的命名空间.SQL⽚段的ID,就可以调⽤对应的映射⽂件中的SQL
//由于我们的参数超过了两个,⽽⽅法中只有⼀个Object参数收集,因此我们使⽤Map集合来装载我们的参数
Map<String, Object> map = new HashMap();
map.put("start", start);
map.put("end", end);
return sqlSession.selectList("StudentID.pagination", map);
}catch(Exception e){
e.printStackTrace();
throw e; }
finally{
MybatisUtil.closeSqlSession();
}
⼀对⼀、⼀对多的关联查询?
<mapper namespace="com.lcb.mapping.userMapper">
<!--association  ⼀对⼀关联查询 -->
<select id="getClass" parameterType="int" resultMap="ClassesResultMap">
select * from class c,teacher t acher_id=t.t_id and c.c_id=#{id}
</select>
<resultMap type="com.lcb.user.Classes" id="ClassesResultMap">
<!-- 实体类的字段名和数据表的字段名映射 -->
<id property="id" column="c_id"/>
<result property="name" column="c_name"/>
<association property="teacher" javaType="com.lcb.user.Teacher">
<id property="id" column="t_id"/>
<result property="name" column="t_name"/>
</association>
</resultMap>
<!--collection  ⼀对多关联查询 -->
<select id="getClass2" parameterType="int" resultMap="ClassesResultMap2">
select * from class c,teacher t,student s acher_id=t.t_id and c.c_id=s.class_id and c.c_id=#{id}      </select>
<resultMap type="com.lcb.user.Classes" id="ClassesResultMap2">
<id property="id" column="c_id"/>
<result property="name" column="c_name"/>
<association property="teacher" javaType="com.lcb.user.Teacher">
<id property="id" column="t_id"/>
<result property="name" column="t_name"/>
</association>
<collection property="student" ofType="com.lcb.user.Student">
<id property="id" column="s_id"/>
<result property="name" column="s_name"/>
</collection>
</resultMap>
</mapper>
好好背背吧,真有⽤。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。