在MyBatis的Builder模式中,可以通过cacheEnabled()
方法来设置缓存。具体的代码示例如下:
SqlSessionFactory sessionFactory = new SqlSessionFactoryBuilder().build(reader);
Configuration configuration = sessionFactory.getConfiguration();
configuration.setCacheEnabled(true);
通过以上代码,可以在MyBatis中启用缓存。需要注意的是,需要在创建SqlSessionFactory实例之后,但在创建SqlSession实例之前调用setCacheEnabled(true)
方法来设置缓存。