當前位置: 首頁>>代碼示例>>Java>>正文


Java RequestAttributes.SCOPE_REQUEST屬性代碼示例

本文整理匯總了Java中org.springframework.web.context.request.RequestAttributes.SCOPE_REQUEST屬性的典型用法代碼示例。如果您正苦於以下問題:Java RequestAttributes.SCOPE_REQUEST屬性的具體用法?Java RequestAttributes.SCOPE_REQUEST怎麽用?Java RequestAttributes.SCOPE_REQUEST使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在org.springframework.web.context.request.RequestAttributes的用法示例。


在下文中一共展示了RequestAttributes.SCOPE_REQUEST屬性的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: getAsyncManager

/**
 * Obtain the {@link WebAsyncManager} for the current request, or if not
 * found, create and associate it with the request.
 */
public static WebAsyncManager getAsyncManager(WebRequest webRequest) {
	int scope = RequestAttributes.SCOPE_REQUEST;
	WebAsyncManager asyncManager = (WebAsyncManager) webRequest.getAttribute(WEB_ASYNC_MANAGER_ATTRIBUTE, scope);
	if (asyncManager == null) {
		asyncManager = new WebAsyncManager();
		webRequest.setAttribute(WEB_ASYNC_MANAGER_ATTRIBUTE, asyncManager, scope);
	}
	return asyncManager;
}
 
開發者ID:lamsfoundation,項目名稱:lams,代碼行數:13,代碼來源:WebAsyncUtils.java

示例2: handleResolvedValue

@Override
@SuppressWarnings("unchecked")
protected void handleResolvedValue(Object arg, String name, MethodParameter parameter,
		ModelAndViewContainer mavContainer, NativeWebRequest request) {

	String key = View.PATH_VARIABLES;
	int scope = RequestAttributes.SCOPE_REQUEST;
	Map<String, Object> pathVars = (Map<String, Object>) request.getAttribute(key, scope);
	if (pathVars == null) {
		pathVars = new HashMap<String, Object>();
		request.setAttribute(key, pathVars, scope);
	}
	pathVars.put(name, arg);
}
 
開發者ID:langtianya,項目名稱:spring4-understanding,代碼行數:14,代碼來源:PathVariableMethodArgumentResolver.java


注:本文中的org.springframework.web.context.request.RequestAttributes.SCOPE_REQUEST屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。