个性化阅读
专注于IT技术分析

Servlet中的事件和监听器

本文概述

  1. Servlet中的事件和侦听器
  2. 活动班
  3. 事件接口

事件基本上是某事的发生。更改对象的状态称为事件。

在发生这些异常时, 我们可以执行一些重要的任务, 例如计算总登录用户数和当前登录用户数, 在部署项目时创建数据库表, 创建数据库连接对象等。

javax.servlet和javax.servlet.http包中有许多事件类和侦听器接口。

活动班

事件类如下:

  1. ServletRequestEvent
  2. ServletContextEvent
  3. ServletRequestAttributeEvent
  4. ServletContextAttributeEvent
  5. HttpSessionEvent
  6. HttpSessionBindingEvent

事件接口

事件接口如下:

  1. ServletRequestListener
  2. ServletRequestAttributeListener
  3. ServletContextListener
  4. ServletContextAttributeListener
  5. HttpSessionListener
  6. HttpSessionAttributeListener
  7. HttpSessionBindingListener
  8. HttpSessionActivationListener

Servlet事件和侦听器中即将出现的主题

ServletContextEvent

让我们看一下ServletContextEvent和ServletContextListener的简单示例

HttpSessionEvent

让我们看一下HttpSessionEvent和HttpSessionListener的简单示例

ServletRequestEvent

让我们看一下ServletRequestEvent和ServletRequestListener的简单示例

ServletContext AttributeEvent

让我们看一下ServletContextAttributeEvent和ServletContextAttributeListener的简单示例

HttpSessionBindingEvent

让我们看一下HttpSessionBindingEvent和HttpSessionAttributeListener的简单示例

ServletRequestAttributeEvent

让我们看一下ServletRequestAttributeEvent和ServletRequestAttributeEvent的简单示例

赞(0)
未经允许不得转载:srcmini » Servlet中的事件和监听器

评论 抢沙发

评论前必须登录!