补充代码注释

This commit is contained in:
ajaxfan
2021-05-11 08:33:06 +08:00
parent e9cb9ea2b9
commit 48f32dfc7e

View File

@ -73,6 +73,7 @@ public class TokenAuthenticationFilter extends OncePerRequestFilter {
.filter(item -> StringUtils.equals(item.getName(), COOKIE_TOKEN_CODE)).findFirst()
.ifPresent(cookie -> setAuthentication(currentRoleCode, cookie.getValue())));
// TODO 临时放行未传递token且session中未包含access token信息的服务调用
isNullThenAssignDefault();
}
filterChain.doFilter(request, response);