Mybatis一级缓存学习入门主要介绍了Mybatis缓存的定义、作用、分类以及一级缓存和二级缓存的工作原理和使用场景。文章详细解释了一级缓存和二级缓存的概念、范围和默认行为,并提供了使用示例和优化技巧。通过学习,读者可以更好地理解和应用Mybatis的缓存机制,提高应用程序的性能。
Mybatis缓存是一种优化机制,它通过在内存中存储查询结果来减少数据库访问次数,从而提高应用程序的响应速度和系统性能。缓存通常分为一级缓存和二级缓存。
Mybatis缓存的作用主要体现在以下几个方面:
Mybatis缓存分为一级缓存和二级缓存。
一级缓存是SqlSession级别的缓存,每个SqlSession对象都有自己的缓存区域,用于存储查询结果。当同一个SqlSession中再次执行相同的SQL语句时,Mybatis会优先从缓存中获取结果,而不是去数据库查询,从而提高查询效率。
一级缓存的有效范围为一个SqlSession对象。当SqlSession对象关闭后,缓存就会被清除。只要SqlSession对象未关闭,一级缓存就会一直存在。
Mybatis默认开启了一级缓存,不需要额外配置。当在一个SqlSession中执行相同的SQL语句时,Mybatis会首先查找缓存。如果缓存中存在相应的结果,则直接返回缓存中的结果,否则再去数据库查询。
当以下情况发生时,一级缓存会自动清空:
二级缓存是Mapper级别的缓存,它可以在多个SqlSession之间共享。二级缓存的作用是避免多个SqlSession之间重复查询相同的数据库数据,从而提高性能。
二级缓存的有效范围为一个Mapper级别,所有同名的Mapper对象共享一个二级缓存。当SqlSession对象关闭后,二级缓存不会被清空,可以被其他SqlSession对象继续使用。
Mybatis默认关闭了二级缓存,需要在配置文件中进行启用。当在一个Mapper中执行相同的SQL语句时,Mybatis会首先查找缓存。如果缓存中存在相应的结果,则直接返回缓存中的结果,否则再去数据库查询。
当以下情况发生时,二级缓存会自动清空:
一级缓存默认是启用的,只要在一个SqlSession中执行查询操作,Mybatis就会自动启用一级缓存。如果需要关闭一级缓存,可以在配置文件中进行相应设置。
假设有一个用户表,需要查询用户信息和更新用户信息,下面是一个示例代码:
<!-- Mybatis配置文件 --> <configuration> <!-- 数据库连接配置 --> <environments default="development"> <environment id="development"> <transactionManager type="JDBC"/> <dataSource type="POOLED"> <property name="driver" value="com.mysql.jdbc.Driver"/> <property name="url" value="jdbc:mysql://localhost:3306/mydb"/> <property name="username" value="root"/> <property name="password" value="password"/> </dataSource> </environment> </environments> <!-- 映射文件 --> <mappers> <mapper resource="UserMapper.xml"/> </mappers> </configuration>
// User实体类 public class User { private int id; private String name; private int age; // 省略getter和setter方法 }
<!-- UserMapper.xml --> <mapper namespace="com.example.mapper.UserMapper"> <select id="selectById" resultType="com.example.model.User"> SELECT id, name, age FROM user WHERE id = #{id} </select> <update id="updateById"> UPDATE user SET name = #{name}, age = #{age} WHERE id = #{id} </update> </mapper>
// UserMapper接口 public interface UserMapper { User selectById(int id); void updateById(int id, String name, int age); }
// 测试代码 public class Test { public static void main(String[] args) { SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(Resources.getResourceAsReader("MybatisConfig.xml")); SqlSession sqlSession = sqlSessionFactory.openSession(); UserMapper userMapper = sqlSession.getMapper(UserMapper.class); // 第一次查询 User user1 = userMapper.selectById(1); System.out.println(user1.getName()); // 更新用户信息 userMapper.updateById(1, "newName", 25); // 再次查询,会从缓存中获取结果 User user2 = userMapper.selectById(1); System.out.println(user2.getName()); sqlSession.commit(); sqlSession.close(); } }
二级缓存默认是关闭的,需要在配置文件中进行启用。启用二级缓存可以提高查询效率,减少数据库访问次数。如果需要启用二级缓存,可以在配置文件中进行相应设置。
假设有一个用户表,需要查询用户信息,下面是一个启用二级缓存的示例代码:
<!-- Mybatis配置文件 --> <configuration> <!-- 数据库连接配置 --> <environments default="development"> <environment id="development"> <transactionManager type="JDBC"/> <dataSource type="POOLED"> <property name="driver" value="com.mysql.jdbc.Driver"/> <property name="url" value="jdbc:mysql://localhost:3306/mydb"/> <property name="username" value="root"/> <property name="password" value="password"/> </dataSource> </environment> </environments> <!-- 映射文件 --> <mappers> <mapper resource="UserMapper.xml"/> </mappers> </configuration>
// User实体类 public class User { private int id; private String name; private int age; // 省略getter和setter方法 }
<!-- UserMapper.xml --> <mapper namespace="com.example.mapper.UserMapper"> <cache /> <select id="selectById" resultType="com.example.model.User"> SELECT id, name, age FROM user WHERE id = #{id} </select> </mapper>
// UserMapper接口 public interface UserMapper { User selectById(int id); }
// 测试代码 public class Test { public static void main(String[] args) { SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(Resources.getResourceAsReader("MybatisConfig.xml")); SqlSession sqlSession = sqlSessionFactory.openSession(); UserMapper userMapper = sqlSession.getMapper(UserMapper.class); // 第一次查询 User user1 = userMapper.selectById(1); System.out.println(user1.getName()); // 关闭SqlSession sqlSession.close(); // 使用另一个SqlSession再次查询,会从缓存中获取结果 SqlSession sqlSession2 = sqlSessionFactory.openSession(); UserMapper userMapper2 = sqlSession2.getMapper(UserMapper.class); User user2 = userMapper2.selectById(1); System.out.println(user2.getName()); sqlSession2.close(); } }
SqlSession.clearCache()
方法手动管理缓存,提高缓存的正确性和性能。Mybatis默认开启了SqlSession级别的缓存,不需要额外配置。默认情况下,一级缓存是SqlSession级别的,只要SqlSession对象未关闭,缓存就会一直存在。在Mybatis配置文件中,可以通过设置<settings>
节点来调整缓存行为。
<settings> <!-- 启用或禁用一级缓存 --> <setting name="cacheEnabled" value="true"/> </settings>
如果需要手动配置一级缓存,可以在Mybatis的配置文件中进行如下设置:
<settings> <setting name="cacheEnabled" value="true"/> </settings>
此外,还可以通过在Mapper XML文件中配置缓存属性来启用或禁用缓存:
<mapper namespace="com.example.mapper.UserMapper"> <cache /> <select id="selectById" resultType="com.example.model.User"> SELECT id, name, age FROM user WHERE id = #{id} </select> </mapper>
如果需要关闭一级缓存,可以在配置文件中设置cacheEnabled
为false
:
<settings> <setting name="cacheEnabled" value="false"/> </settings>
也可以在Mapper XML文件中禁用缓存:
<mapper namespace="com.example.mapper.UserMapper"> <cache enabled="false" /> <select id="selectById" resultType="com.example.model.User"> SELECT id, name, age FROM user WHERE id = #{id} </select> </mapper>
如果需要手动配置二级缓存,可以在Mybatis的配置文件中进行如下设置:
<settings> <setting name="cacheEnabled" value="true"/> </settings>
此外,还需要在Mapper XML文件中启用缓存:
<mapper namespace="com.example.mapper.UserMapper"> <cache /> <select id="selectById" resultType="com.example.model.User"> SELECT id, name, age FROM user WHERE id = #{id} </select> </mapper>
如果需要关闭二级缓存,可以在配置文件中设置cacheEnabled
为false
:
<settings> <setting name="cacheEnabled" value="false"/> </settings>
也可以在Mapper XML文件中禁用缓存:
<mapper namespace="com.example.mapper.UserMapper"> <cache enabled="false" /> <select id="selectById" resultType="com.example.model.User"> SELECT id, name, age FROM user WHERE id = #{id} </select> </mapper>
SqlSession.clearCache()
方法来清空缓存,以确保缓存的正确性。Mybatis一级缓存是SqlSession级别的缓存,它在减少数据库访问次数、提高系统性能等方面起到了重要作用。一级缓存默认是启用的,但可以通过配置文件进行禁用。合理使用一级缓存可以显著提高应用程序的性能。二级缓存是Mapper级别的缓存,可以在多个SqlSession之间共享,进一步提高查询效率。合理使用二级缓存可以减少数据库访问次数,提高系统性能。
SqlSession.clearCache()
方法手动管理缓存,提高缓存的正确性和性能。通过以上内容的学习和实践,可以更好地理解和使用Mybatis的一级缓存和二级缓存,从而提高应用程序的性能和效率。推荐编程学习网站可以参考慕课网。