org.apache.catalina.core.ApplicationContext.getAttribute()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(4.6k)|赞(0)|评价(0)|浏览(163)

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

ApplicationContext.getAttribute介绍

[英]Return the value of the specified context attribute, if any; otherwise return null.
[中]返回指定上下文属性的值(如果有);否则返回null

代码示例

代码示例来源:origin: org.glassfish.main.web/web-core

/**
 * Return the value of the specified context attribute, if any;
 * otherwise return <code>null</code>.
 */
@Override
public Object getAttribute(String name) {
  return context.getAttribute(name);
}

代码示例来源:origin: org.apache.geronimo.ext.tomcat/catalina-ha

@Override
public Object getAttribute(String name) {
  Object obj = tomcatAttributes.get(name);
  if (obj == null) {
    return super.getAttribute(name);
  } else {
    return obj;
  }
}

代码示例来源:origin: codefollower/Tomcat-Research

@Override
public Object getAttribute(String name) {
  Object obj = tomcatAttributes.get(name);
  if (obj == null) {
    return super.getAttribute(name);
  } else {
    return obj;
  }
}

代码示例来源:origin: org.apache.tomcat/tomcat-catalina-ha

@Override
public Object getAttribute(String name) {
  Object obj = tomcatAttributes.get(name);
  if (obj == null) {
    return super.getAttribute(name);
  } else {
    return obj;
  }
}

代码示例来源:origin: codefollower/Tomcat-Research

@Override
public Object getAttribute(String name) {
  if (SecurityUtil.isPackageProtectionEnabled()) {
    return doPrivileged("getAttribute", new Object[]{name});
  } else {
    return context.getAttribute(name);
  }
 }

代码示例来源:origin: org.apache.tomcat/tomcat-catalina

@Override
public Object getAttribute(String name) {
  if (SecurityUtil.isPackageProtectionEnabled()) {
    return doPrivileged("getAttribute", new Object[]{name});
  } else {
    return context.getAttribute(name);
  }
 }

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

public Object getAttribute(String name) {
  if (SecurityUtil.isPackageProtectionEnabled()) {
    return doPrivileged("getAttribute", new Object[]{name});
  } else {
    return context.getAttribute(name);
  }
 }

代码示例来源:origin: org.glassfish.main.web/web-core

@Override
public Object getAttribute(String name) {
  if (SecurityUtil.isPackageProtectionEnabled()) {
    return doPrivileged("getAttribute", new Object[]{name});
  } else {
    return context.getAttribute(name);
  }
 }

代码示例来源:origin: com.ovea.tajin.server/tajin-server-jetty9

@Override
public Object getAttribute(String name) {
  if (SecurityUtil.isPackageProtectionEnabled()) {
    return doPrivileged("getAttribute", new Object[]{name});
  } else {
    return context.getAttribute(name);
  }
 }

代码示例来源:origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core

@Override
public Object getAttribute(String name) {
  if (SecurityUtil.isPackageProtectionEnabled()) {
    return doPrivileged("getAttribute", new Object[]{name});
  } else {
    return context.getAttribute(name);
  }
 }

代码示例来源:origin: com.ovea.tajin.servers/tajin-server-jetty9

@Override
public Object getAttribute(String name) {
  if (SecurityUtil.isPackageProtectionEnabled()) {
    return doPrivileged("getAttribute", new Object[]{name});
  } else {
    return context.getAttribute(name);
  }
 }

代码示例来源:origin: com.ovea.tajin.server/tajin-server-tomcat7

@Override
public Object getAttribute(String name) {
  if (SecurityUtil.isPackageProtectionEnabled()) {
    return doPrivileged("getAttribute", new Object[]{name});
  } else {
    return context.getAttribute(name);
  }
 }

代码示例来源:origin: tomcat/catalina

public Object getAttribute(String name) {
  if (SecurityUtil.isPackageProtectionEnabled()) {
    return doPrivileged("getAttribute", new Object[]{name});
  } else {
    return context.getAttribute(name);
  }
 }

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

public Object getAttribute(String name) {
  if (SecurityUtil.isPackageProtectionEnabled()) {
    return doPrivileged("getAttribute", new Object[]{name});
  } else {
    return context.getAttribute(name);
  }
 }

代码示例来源:origin: org.apache.geronimo.ext.tomcat/catalina

@Override
public Object getAttribute(String name) {
  if (SecurityUtil.isPackageProtectionEnabled()) {
    return doPrivileged("getAttribute", new Object[]{name});
  } else {
    return context.getAttribute(name);
  }
 }

代码示例来源:origin: org.apache.catalina/com.springsource.org.apache.catalina

@Override
public Object getAttribute(String name) {
  if (SecurityUtil.isPackageProtectionEnabled()) {
    return doPrivileged("getAttribute", new Object[]{name});
  } else {
    return context.getAttribute(name);
  }
 }

代码示例来源:origin: org.glassfish.main.web/web-core

/**
 * Return the servlet context for which this Context is a facade.
 */
@Override
public ServletContext getServletContext() {
  if (context == null) {
    context = new ApplicationContext(this);
    if (altDDName != null
        && context.getAttribute(Globals.ALT_DD_ATTR) == null){
      context.setAttribute(Globals.ALT_DD_ATTR,altDDName);
      context.setAttributeReadOnly(Globals.ALT_DD_ATTR);
    }
  }
  return context.getFacade();
}

相关文章

微信公众号

最新文章

更多

ApplicationContext类方法