在使用SpringMVC+hibernate框架时,想要在session到期后,可以更新数据库中用户在线状态。
于是我自定义一个类 SessionListener implements HttpSessionListener,并实现了方法sessionDestroyed,代码如下:
其中:HttpsessionListener的实现类也放在了Dao的包里面
@Override
public void sessionDestroyed(HttpSessionEvent se) {
// TODO Auto-generated method stub
HttpSession session = se.getSession();
LoginUserSessionVO user = (LoginUserSessionVO)session.getAttribute("User");
Integer userTID = user.getUserTID();
Timestamp logoutTime = new Timestamp(System.currentTimeMillis());
//获取Java bean
UserInfoTableDao userInfoDao = (UserInfoTableDao)this.getObjectFromApplication(session.getServletContext(), "UserInfoTableDaoImpl");
//注销当前用户
userInfoDao.setLogoutInfoByUserTID(0, logoutTime, userTID);
System.out.println("用户已超时退出");
}
/**
* 通过WebApplicationContextUtils 得到Spring容器的实例。根据bean的名称返回bean的实例。
* @param servletContext :ServletContext上下文。
* @param beanName :要取得的Spring容器中Bean的名称。
* @return 返回Bean的实例。
*/
private Object getObjectFromApplication(ServletContext servletContext,String beanName) {
ApplicationContext applicationContext = WebApplicationContextUtils.getWebApplicationContext(servletContext);
return applicationContext.getBean(beanName);
}
然后运行时报错:
严重: Session event listener threw exception
org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'UserInfoTableDaoImpl' is defined
不知道是什么原因?网上找了很久都没找到,是bean没有get到还是bean的名字不对?应该get哪个啊?求大神解救,在线等!