November 2017
Intermediate to advanced
542 pages
14h 24m
English
The RememberMeAuthenticationProvider class had the default constructor and the setKey method removed in favor of the constructor injection. For example, take a look at the following code:
RememberMeAuthenticationProvider provider = new RememberMeAuthenticationProvider(); provider.setKey(key);
The preceding code snippet should be migrated to the following:
RememberMeAuthenticationProvider provider = new RememberMeAuthenticationProvider(key);
Read now
Unlock full access