November 2017
Intermediate to advanced
542 pages
14h 24m
English
SessionManagementFilter removed the setSessionAuthenticationStrategy method in favor of the constructor injection. For example:
SessionManagementFilter filter = new SessionManagementFilter(securityContextRepository);filter.setSessionAuthenticationStrategy(sessionAuthenticationStrategy);
This should be replaced with:
SessionManagementFilter filter = new SessionManagementFilter(securityContextRepository, sessionAuthenticationStrategy);
Read now
Unlock full access