本文整理匯總了Java中org.springframework.web.context.request.ServletRequestAttributes.requestCompleted方法的典型用法代碼示例。如果您正苦於以下問題:Java ServletRequestAttributes.requestCompleted方法的具體用法?Java ServletRequestAttributes.requestCompleted怎麽用?Java ServletRequestAttributes.requestCompleted使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.springframework.web.context.request.ServletRequestAttributes
的用法示例。
在下文中一共展示了ServletRequestAttributes.requestCompleted方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: doFilterInternal
import org.springframework.web.context.request.ServletRequestAttributes; //導入方法依賴的package包/類
@Override
protected void doFilterInternal(
HttpServletRequest request, HttpServletResponse response, FilterChain filterChain)
throws ServletException, IOException {
ServletRequestAttributes attributes = new ServletRequestAttributes(request);
initContextHolders(request, attributes);
try {
filterChain.doFilter(request, response);
}
finally {
resetContextHolders();
if (logger.isDebugEnabled()) {
logger.debug("Cleared thread-bound request context: " + request);
}
attributes.requestCompleted();
}
}
示例2: doFilterInternal
import org.springframework.web.context.request.ServletRequestAttributes; //導入方法依賴的package包/類
@Override
protected void doFilterInternal(
HttpServletRequest req, HttpServletResponse res, FilterChain chain)
throws ServletException, IOException {
ServletRequestAttributes attributes = new ServletRequestAttributes(req, res);
try {
if(1 + 1 == 2) {
Authentication old = SecurityContextHolder.getContext().getAuthentication();
try {
SecurityContextHolder.getContext().setAuthentication(null);
super.doFilter(req, res, chain);
} finally {
SecurityContextHolder.getContext().setAuthentication(old);
}
}
else {
super.doFilter(req, res, chain);
}
}
finally {
attributes.requestCompleted();
}
}
示例3: doFilterInternal
import org.springframework.web.context.request.ServletRequestAttributes; //導入方法依賴的package包/類
@Override
protected void doFilterInternal(
HttpServletRequest req, HttpServletResponse res, FilterChain chain)
throws ServletException, IOException {
ServletRequestAttributes attributes = new ServletRequestAttributes(req, res);
try {
if(1 + 1 == 2) {
SecurityContext oldCtx = SecurityContextHolder.getContext();
SecurityContextHolder.setContext(null); //
try {
super.doFilter(req, res, chain);
} finally {
SecurityContextHolder.setContext(oldCtx);
}
}
else {
super.doFilter(req, res, chain);
}
}
finally {
attributes.requestCompleted();
}
}