本文整理了Java中org.apache.catalina.core.ApplicationContext.getAttribute()
方法的一些代码示例,展示了ApplicationContext.getAttribute()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ApplicationContext.getAttribute()
方法的具体详情如下:
包路径:org.apache.catalina.core.ApplicationContext
类名称: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();
}
内容来源于网络,如有侵权,请联系作者删除!