我是编程新手
我在网上搜索了很多,但没有人能满足我的要求。这里我想在用户关闭浏览器窗口时从数据库中删除数据。
在这里我找到了堆栈溢出的一种解决方案
public class YourHttpSessionListener implements HttpSessionListener {
public void sessionCreated(HttpSessionEvent event) {
//put row in the database
}
public void sessionDestroyed(HttpSessionEvent event) {
//delete the row from database
System.out.println("entered in to listener class");
}
}
我在 web.xml 中添加了这些行
<listener>
<listener-class>YourHttpSessionListener</listener-class>
</listener>
这里我不使用任何 ajax 调用或其他。但是在关闭浏览器时不调用 sessionDestroyed()。这里我没有创建任何会话。