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

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

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

ApplicationContext.setAttribute介绍

[英]Bind the specified value with the specified context attribute name, replacing any existing value for that name.
[中]用指定的上下文属性名称绑定指定的值,替换该名称的任何现有值。

代码示例

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

/**
 * Set an alternate Deployment Descriptor name.
 */
public void setAltDDName(String altDDName) {
  this.altDDName = altDDName;
  if (context != null) {
    context.setAttribute(Globals.ALT_DD_ATTR,altDDName);
  }
}

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

/**
 * Set an alternate Deployment Descriptor name.
 *
 * @param altDDName The new name
 */
@Override
public void setAltDDName(String altDDName) {
  this.altDDName = altDDName;
  if (context != null) {
    context.setAttribute(Globals.ALT_DD_ATTR,altDDName);
  }
}

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

/**
 * Set an alternate Deployment Descriptor name.
 */
public void setAltDDName(String altDDName) {
  this.altDDName = altDDName;
  if (context != null) {
    context.setAttribute(Globals.ALT_DD_ATTR,altDDName);
  }
}

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

/**
 * Set an alternate Deployment Descriptor name.
 */
@Override
public void setAltDDName(String altDDName) {
  this.altDDName = altDDName;
  if (context != null) {
    context.setAttribute(Globals.ALT_DD_ATTR,altDDName);
  }
}

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

/**
 * Set an alternate Deployment Descriptor name.
 */
public void setAltDDName(String altDDName) {
  this.altDDName = altDDName;
  if (context != null) {
    context.setAttribute(Globals.ALT_DD_ATTR,altDDName);
  }
}

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

/**
 * @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.setAttribute(Globals.ALT_DD_ATTR,altDDName);
  }
  return context.getFacade();
}

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

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

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

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

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

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

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

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

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

@Override
public void setAttribute(String name, Object value) {
  if ( (!getParent().getState().isAvailable()) || "org.apache.jasper.runtime.JspApplicationContextImpl".equals(name) ){
    tomcatAttributes.put(name,value);
  } else
    super.setAttribute(name,value);
}

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

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

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

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

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

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

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

/**
 * 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.setAttribute(Globals.ALT_DD_ATTR,altDDName);
  }
  return (context.getFacade());
}

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

@Override
public void setAttribute(String name, Object value) {
  if ( (!getParent().getState().isAvailable()) || "org.apache.jasper.runtime.JspApplicationContextImpl".equals(name) ){
    tomcatAttributes.put(name,value);
  } else
    super.setAttribute(name,value);
}

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

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

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

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

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

@Override
public ServletContext getServletContext() {
  if (context == null) {
    context = new ReplApplContext(this);
    if (getAltDDName() != null)
      context.setAttribute(Globals.ALT_DD_ATTR,getAltDDName());
  }
  return ((ReplApplContext)context).getFacade();
}

代码示例来源:origin: org.mobicents.servlet.sip.containers/sip-servlets-as7

@Override
public ServletContext getServletContext() {	
  if (context == null) {
    context = new ConvergedApplicationContext(getBasePath(), this);
    if (getAltDDName() != null)
      context.setAttribute(Globals.ALT_DD_ATTR,getAltDDName());
  }
  return ((ConvergedApplicationContext)context).getFacade();
}

相关文章

ApplicationContext类方法