Mybatis面试知识点、工作知识点、干货分享(别找了,全在这了)

面试题部分

1.什么是mybatis

Mybatis是一个半ORM(对象关系映射)框架,它内部封装了JDBC,它可以用xml和注解的方式定义语句。

2.说说mybatis比jdbc更好的地方

(1)mybatis减少了冗余代码,jdbc的rs.getString

(2)SQL语句可配置化,减少代码编写量。

(3)集成了连接池,jdbc需要配合druid等连接池实现。

3.#{}${}的区别是什么?

#{}是预编译处理,${}是字符串替换。

Mybatis在处理#{}时,会将sql中的#{}替换为?号,调用PreparedStatement的set方法来赋值;

Mybatis在处理${}时,就是把${}替换成变量的值。

使用#{}可以有效的防止SQL注入,提高系统安全性。

4.表字段名和实体类属性名不一样怎么办?

(1)可以在语句中用别名  select  user_id  as id

  (2) 可以用用resultMap映射对应关系。

<select id="getOrder" parameterType="int" resultMap="orderresultmap">  
        select * from orders where order_id=#{id}  
    </select>  
  
   <resultMap type=”me.gacl.domain.order” 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> 

5.模糊查询like语句该怎么写?

用oracle的||双竖线连接字符串%,中间接预编译字符串。

<select id="select3" resultMap="myMap">

        select * from student where  name like '%' || #{name} || '%'

</select>

另外一种直接#{value} 不推荐

6.Dao接口的工作原理是什么?Dao接口里的方法,参数不同时,方法能重载吗?

Dao接口即Mapper接口,xml中的namespace映射dao接口路径,接口的方法名映射xml中的每个语句标签的id属性,接口方法内的参数,就是传递给sql的参数。

在Mybatis中,每一个<select><insert><update><delete>标签,都会被解析为一个MapperStatement对象。

方法不能重载,因为mybatis是把接口名+方法名作为唯一key去寻找xml中的语句标签的,语句标签存在MapperStatement里,唯一key-MapperStatement

Mapper 接口的工作原理是JDK动态代理,Mybatis运行时会使用JDK动态代理为Mapper接口生成代理对象MapperProxy,代理对象会拦截接口方法,转而执行MapperStatement所代表的sql,然后将sql执行结果返回。

7.Mybatis的Xml映射文件中,不同的Xml映射文件,id是否可以重复?

不同的Xml映射文件,如果配置了namespace,那么id可以重复;如果没有配置namespace,那么id不能重复;

8.Mybatis是如何进行分页的?分页插件的原理是什么?

Mybatis使用RowBounds对象进行分页,它是针对ResultSet结果集执行的内存分页,而非物理分页。可以在sql内直接书写带有物理分页的参数来完成物理分页功能,也可以使用分页插件来完成物理分页。

分页插件的基本原理是使用Mybatis提供的插件接口,实现自定义插件,在插件的拦截方法内拦截待执行的sql,然后重写sql,根据dialect方言,添加对应的物理分页语句和物理分页参数。

9.Mybatis是如何将sql执行结果封装为目标对象并返回的?都有哪些映射形式?

第一种是使用<resultMap>标签,逐一定义数据库列名和对象属性名之间的映射关系。

第二种是使用sql列的别名功能,将列的别名书写为对象属性名。

有了列名与属性名的映射关系后,Mybatis通过反射创建对象,同时使用反射给对象的属性逐一赋值并返回,那些找不到映射关系的属性,是无法完成赋值的。

第三种,自动驼峰 配置:

        <setting name="mapUnderscoreToCamelCase" value="true"/>

10.在mapper中如何传递多个参数?

第一种:

// 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> 

第二种:使用 @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>  

第三种:多个参数封装成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();       
   sqlSession.rollback();      
   throw e; }  
   finally{   
   MybatisUtil.closeSqlSession();   
 }  

 11.Mybatis动态sql有什么用?执行原理?有哪些动态sql?

Mybatis动态sql可以在Xml映射文件内,以标签的形式编写动态sql,执行原理是根据表达式的值 完成逻辑判断并动态拼接sql的功能。

Mybatis提供了9种动态sql标签:trim | where | set | foreach | if | choose | when | otherwise | bind。

12.Xml映射文件中,除了常见的select|insert|updae|delete标签之外,还有哪些标签?

<resultMap><parameterMap><sql><include><selectKey>,加上动态sql的9个标签,其中为sql片段标签,通过<include>标签引入sql片段,<selectKey>为不支持自增的主键生成策略标签。

13.一对一、一对多的关联查询 ?

一对一用association,一对多用collection

<mapper namespace="com.lcb.mapping.userMapper">    
    <!--association  一对一关联查询 -->    
    <select id="getClass" parameterType="int" resultMap="ClassesResultMap">    
        select * from class c,teacher t where c.teacher_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 where c.teacher_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>   

14.Mybatis的一级、二级缓存底层实现是什么?如何开启二级缓存?

一级缓存就是一个HashMap存储实现,作用域是sqlsession,默认打开一级缓存。

二级缓存也是由HashMap实现。作用域是namespace级别,默认关闭。

对于缓存数据更新机制,当某一个作用域(一级缓存 Session/二级缓存Namespaces)的进行了C/U/D 操作后,默认该作用域下所有 select 中的缓存将被 clear。

public class MybatisTest {

	public static void main(String[] args) throws IOException {
		String resource = "mybatis-config.xml";
		InputStream inputStream = Resources.getResourceAsStream(resource);
		SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
		SqlSession  session = sqlSessionFactory.openSession();
		DeptMapper mapper = session.getMapper(DeptMapper.class);
		Dept dept = mapper.selectByPrimaryKey(10);
		System.out.println(dept);

		DeptMapper mapper1 = session.getMapper(DeptMapper.class);
		Dept dept1 = mapper.selectByPrimaryKey(10);
		System.out.println(dept1);
	}
}

 //一级缓存验证:结果显示 查询语句只打印了一次

实现二级缓存:

1.配置开启<setting name="cacheEnabled" value="true"/>    <!-- 二级缓存开启 -->

2.开启二级缓存还必须POJO对象要实现Serializable接口,否则会抛出异常。 

15.什么是MyBatis的接口绑定?有哪些实现方式?

接口绑定,就是在MyBatis中任意定义接口,然后把接口里面的方法和SQL语句绑定, 我们直接调用接口方法就可以,这样比起原来了SqlSession提供的方法我们可以有更加灵活的选择和设置。

接口绑定有两种实现方式,一种是通过注解绑定,就是在接口的方法上面加上 @Select、@Update等注解,里面包含Sql语句来绑定;另外一种就是通过xml里面写SQL来绑定, 在这种情况下,要指定xml映射文件里面的namespace必须为接口的全路径名。当Sql语句比较简单时候,用注解绑定, 当SQL语句比较复杂时候,用xml绑定,一般用xml绑定的比较多。

16.使用MyBatis的mapper接口调用时有哪些要求?

Mapper接口方法名和mapper.xml中定义的每个sql的id相同;

Mapper接口方法的输入参数类型和mapper.xml中定义的每个sql 的parameterType的类型相同;

Mapper接口方法的输出参数类型和mapper.xml中定义的每个sql的resultType的类型相同;

Mapper.xml文件中的namespace即是mapper接口的类路径。

17.Mapper编写有哪几种方式?

第一种:接口实现类继承SqlSessionDaoSupport:使用此种方法需要编写mapper接口,mapper接口实现类、mapper.xml文件。

在sqlMapConfig.xml中配置mapper.xml的位置

<mappers>  
    <mapper resource="mapper.xml文件的地址" />  
    <mapper resource="mapper.xml文件的地址" />  
</mappers>  

定义mapper接口

实现类集成SqlSessionDaoSupport

mapper方法中可以this.getSqlSession()进行数据增删改查。

spring 配置

<bean id=" " class="mapper接口的实现">  
    <property name="sqlSessionFactory" ref="sqlSessionFactory"></property>  
</bean>  

第二种:使用org.mybatis.spring.mapper.MapperFactoryBean:

在sqlMapConfig.xml中配置mapper.xml的位置,如果mapper.xml和mappre接口的名称相同且在同一个目录,这里可以不用配置

<mappers>  
    <mapper resource="mapper.xml文件的地址" />  
    <mapper resource="mapper.xml文件的地址" />  
</mappers>  

定义mapper接口:

mapper.xml中的namespace为mapper接口的地址

mapper接口中的方法名和mapper.xml中的定义的statement的id保持一致

Spring中定义

<bean id="" class="org.mybatis.spring.mapper.MapperFactoryBean">  
    <property name="mapperInterface"   value="mapper接口地址" />   
    <property name="sqlSessionFactory" ref="sqlSessionFactory" />   
</bean>  

第三种:使用mapper扫描器:

mapper.xml文件编写:

  • mapper.xml中的namespace为mapper接口的地址;

  • mapper接口中的方法名和mapper.xml中的定义的statement的id保持一致;

  • 如果将mapper.xml和mapper接口的名称保持一致则不用在sqlMapConfig.xml中进行配置。

  • 注意mapper.xml的文件名和mapper的接口名称保持一致,且放在同一个目录

18.简述Mybatis的插件运行原理,以及如何编写一个插件。

答:Mybatis仅可以编写针对ParameterHandler、ResultSetHandler、StatementHandler、Executor这4种接口的插件,Mybatis使用JDK的动态代理,为需要拦截的接口生成代理对象以实现接口方法拦截功能,每当执行这4种接口对象的方法时,就会进入拦截方法,具体就是InvocationHandler的invoke()方法,当然,只会拦截那些你指定需要拦截的方法。

编写插件:实现Mybatis的Interceptor接口并复写intercept()方法,然后在给插件编写注解,指定要拦截哪一个接口的哪些方法即可,记住,别忘了在配置文件中配置你编写的插件。

猜你喜欢

转载自blog.csdn.net/x18094/article/details/115261377
今日推荐