在MyBatis的Builder模式中,可以通過cacheEnabled()
方法來設置緩存。具體的代碼示例如下:
SqlSessionFactory sessionFactory = new SqlSessionFactoryBuilder().build(reader);
Configuration configuration = sessionFactory.getConfiguration();
configuration.setCacheEnabled(true);
通過以上代碼,可以在MyBatis中啟用緩存。需要注意的是,需要在創建SqlSessionFactory實例之后,但在創建SqlSession實例之前調用setCacheEnabled(true)
方法來設置緩存。