MyBatis的Builder模式中,如何设置缓存

avatar
作者
猴君
阅读量:0

在MyBatis的Builder模式中,可以通过cacheEnabled()方法来设置缓存。具体的代码示例如下:

SqlSessionFactory sessionFactory = new SqlSessionFactoryBuilder().build(reader); Configuration configuration = sessionFactory.getConfiguration(); configuration.setCacheEnabled(true); 

通过以上代码,可以在MyBatis中启用缓存。需要注意的是,需要在创建SqlSessionFactory实例之后,但在创建SqlSession实例之前调用setCacheEnabled(true)方法来设置缓存。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!