当前位置: 代码迷 >> J2EE >> hibernate缓存有关问题
  详细解决方案

hibernate缓存有关问题

热度:194   发布时间:2016-04-22 02:29:31.0
hibernate缓存问题
两个项目,一个是后台,一个是前台,前台显示数据,在后台添加一条数据之后,前台不立即显示,非得重新发布了才会显示.
添加数据之后调用了前台action.清除
Java code
HibernateSessionFactory.getSession().close();        HibernateSessionFactory.getSession().clear();        HibernateSessionFactory.getSession().flush();        request.getSession().invalidate();
都用了,前台还是不立即显示.请高手解答一下

------解决方案--------------------
是不是页面被缓存了?JSP里设置一下 no cache试试。
  相关解决方案