November 2017
Intermediate to advanced
542 pages
14h 24m
English
The AbstractAuthenticationProcessingFilter class had its successfulAuthentication(HttpServletRequest,HttpServletResponse,Authentication) method removed. So, your application may override the following method:
protected void successfulAuthentication(HttpServletRequest request, HttpServletResponse response, Authentication authResult) throws IOException, ServletException { }
It should be replaced with the following code:
protected void successfulAuthentication(HttpServletRequest request, HttpServletResponse response, FilterChain chain, Authentication authResult) throws IOException, ServletException { }
Read now
Unlock full access