当前位置: 首页>>代码示例>>Java>>正文


Java PageContext.APPLICATION_SCOPE属性代码示例

本文整理汇总了Java中javax.servlet.jsp.PageContext.APPLICATION_SCOPE属性的典型用法代码示例。如果您正苦于以下问题:Java PageContext.APPLICATION_SCOPE属性的具体用法?Java PageContext.APPLICATION_SCOPE怎么用?Java PageContext.APPLICATION_SCOPE使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在javax.servlet.jsp.PageContext的用法示例。


在下文中一共展示了PageContext.APPLICATION_SCOPE属性的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getScope

/**
 * Determines the scope for a given input {@code String}.
 * <p>If the {@code String} does not match 'request', 'session',
 * 'page' or 'application', the method will return {@link PageContext#PAGE_SCOPE}.
 * @param scope the {@code String} to inspect
 * @return the scope found, or {@link PageContext#PAGE_SCOPE} if no scope matched
 * @throws IllegalArgumentException if the supplied {@code scope} is {@code null}
 */
public static int getScope(String scope) {
	Assert.notNull(scope, "Scope to search for cannot be null");
	if (scope.equals(SCOPE_REQUEST)) {
		return PageContext.REQUEST_SCOPE;
	}
	else if (scope.equals(SCOPE_SESSION)) {
		return PageContext.SESSION_SCOPE;
	}
	else if (scope.equals(SCOPE_APPLICATION)) {
		return PageContext.APPLICATION_SCOPE;
	}
	else {
		return PageContext.PAGE_SCOPE;
	}
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:23,代码来源:TagUtils.java

示例2: getScope

/**
 * Converts the given string description of a scope to the corresponding
 * PageContext constant.
 *
 * The validity of the given scope has already been checked by the
 * appropriate TLV.
 *
 * @param scope String description of scope
 *
 * @return PageContext constant corresponding to given scope description
 * 
 * taken from org.apache.taglibs.standard.tag.common.core.Util  
 */
public static int getScope(String scope){
    int ret = PageContext.PAGE_SCOPE;
    
    if("request".equalsIgnoreCase(scope)){
        ret = PageContext.REQUEST_SCOPE;
    }else if("session".equalsIgnoreCase(scope)){
        ret = PageContext.SESSION_SCOPE;
    }else if("application".equalsIgnoreCase(scope)){
        ret = PageContext.APPLICATION_SCOPE;
    }
    
    return ret;
}
 
开发者ID:liaokailin,项目名称:tomcat7,代码行数:26,代码来源:Util.java

示例3: getScope

/**
 * Converts the given string description of a scope to the corresponding
 * PageContext constant.
 *
 * The validity of the given scope has already been checked by the
 * appropriate TLV.
 *
 * @param scope
 *            String description of scope
 *
 * @return PageContext constant corresponding to given scope description
 * 
 *         taken from org.apache.taglibs.standard.tag.common.core.Util
 */
public static int getScope(String scope) {
	int ret = PageContext.PAGE_SCOPE;

	if ("request".equalsIgnoreCase(scope)) {
		ret = PageContext.REQUEST_SCOPE;
	} else if ("session".equalsIgnoreCase(scope)) {
		ret = PageContext.SESSION_SCOPE;
	} else if ("application".equalsIgnoreCase(scope)) {
		ret = PageContext.APPLICATION_SCOPE;
	}

	return ret;
}
 
开发者ID:how2j,项目名称:lazycat,代码行数:27,代码来源:Util.java


注:本文中的javax.servlet.jsp.PageContext.APPLICATION_SCOPE属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。