org.apache.catalina.Context.getApplicationSessionLifecycleListeners()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(1.7k)|赞(0)|评价(0)|浏览(110)

本文整理了Java中org.apache.catalina.Context.getApplicationSessionLifecycleListeners()方法的一些代码示例,展示了Context.getApplicationSessionLifecycleListeners()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Context.getApplicationSessionLifecycleListeners()方法的具体详情如下:
包路径:org.apache.catalina.Context
类名称:Context
方法名:getApplicationSessionLifecycleListeners

Context.getApplicationSessionLifecycleListeners介绍

[英]Return the set of initialized application lifecycle listener objects, in the order they were specified in the web application deployment descriptor, for this application.
[中]按照在web应用程序部署描述符中为此应用程序指定的顺序,返回初始化的应用程序生命周期侦听器对象集。

代码示例

代码示例来源:origin: org.jboss.web/jbossweb

Object listeners[] = context.getApplicationSessionLifecycleListeners();
if (listeners != null && listeners.length > 0) {
  HttpSessionEvent event =

代码示例来源:origin: jboss.web/jbossweb

Object listeners[] = context.getApplicationSessionLifecycleListeners();
if (listeners != null) {
  HttpSessionEvent event =

代码示例来源:origin: org.jboss.jbossas/jboss-as-tomcat

Object lifecycleListeners[] = context.getApplicationSessionLifecycleListeners();
if (lifecycleListeners != null)

代码示例来源:origin: org.jboss.jbossas/jboss-as-tomcat

Object lifecycleListeners[] = context.getApplicationSessionLifecycleListeners();
if (notify 
   && (lifecycleListeners != null)

代码示例来源:origin: jboss.web/jbossweb

Object listeners[] = context.getApplicationSessionLifecycleListeners();
if (notify && listeners != null && (listeners.length > 0)) {
  HttpSessionEvent event =

代码示例来源:origin: org.jboss.web/jbossweb

Object listeners[] = context.getApplicationSessionLifecycleListeners();
if (notify && listeners != null && (listeners.length > 0)) {
  HttpSessionEvent event =

相关文章

微信公众号

最新文章

更多

Context类方法