November 2017
Intermediate to advanced
542 pages
14h 24m
English
ConcurrentSessionFilter removed the default constructor, the setExpiredUrl, and the setSessionRegistry methods in favor of the constructor injection. For example:
ConcurrentSessionFilter filter = new ConcurrentSessionFilter();filter.setSessionRegistry(sessionRegistry);filter.setExpiredUrl("/expired");
This should be replaced with:
ConcurrentSessionFilter filter = new ConcurrentSessionFilter(sessionRegistry,"/expired");
Read now
Unlock full access