[mybatis]缓存_一级缓存
Posted 唐火
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[mybatis]缓存_一级缓存相关的知识,希望对你有一定的参考价值。
@Test
public void test05() throws IOException
SqlSessionFactory sqlSessionFactory = getSqlSessionFactory();
SqlSession sqlSession = sqlSessionFactory.openSession();
try
EmployeeMapper mapper = sqlSession.getMapper(EmployeeMapper.class);
Employee emp01 = mapper.getEmpById(1);
System.out.println(emp01);
Employee emp02 = mapper.getEmpById(1);
System.out.println(emp02);
System.out.println(emp01==emp02);
finally
sqlSession.close();
可以看到只调用了一次sql语句,而且两次创建的Employee对象是同一个
以上是关于[mybatis]缓存_一级缓存的主要内容,如果未能解决你的问题,请参考以下文章