本文整理匯總了Java中javax.servlet.jsp.PageContext.PAGE_SCOPE屬性的典型用法代碼示例。如果您正苦於以下問題:Java PageContext.PAGE_SCOPE屬性的具體用法?Java PageContext.PAGE_SCOPE怎麽用?Java PageContext.PAGE_SCOPE使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類javax.servlet.jsp.PageContext
的用法示例。
在下文中一共展示了PageContext.PAGE_SCOPE屬性的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的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;
}
}
示例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;
}
示例3: release
/**
* Release all allocated resources.
*/
public void release() {
super.release();
property = null;
scopeName = null;
scope = PageContext.PAGE_SCOPE;
}
示例4: release
/**
* Release all allocated resources.
*/
public void release() {
super.release();
name = null;
scopeName = null;
scope = PageContext.PAGE_SCOPE;
isErrorIgnored = false;
}
示例5: release
/**
* Release all allocated resources.
*/
public void release() {
super.release();
attributeName = null;
classname = null;
scope = PageContext.PAGE_SCOPE;
scopeName = null;
isErrorIgnored = false;
// Parent doesn't clear id, so we do it
// bug reported by Heath Chiavettone on 18 Mar 2002
id = null;
}
示例6: 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;
}