November 2017
Intermediate to advanced
542 pages
14h 24m
English
The LoginUrlAuthenticationEntryPoint default constructor and the setLoginFormUrl method was removed in favor of the constructor injection. For example:
LoginUrlAuthenticationEntryPoint entryPoint = new LoginUrlAuthenticationEntryPoint(); entryPoint.setLoginFormUrl("/login");
This should be replaced with the following code:
LoginUrlAuthenticationEntryPoint entryPoint = new LoginUrlAuthenticationEntryPoint(loginFormUrl);
Read now
Unlock full access