November 2017
Intermediate to advanced
542 pages
14h 24m
English
The SecurityConfig.createSingleAttributeList(String) interface was removed in favor of using SecurityConfig.createList(String… ). This means that if you have something like as follows:
List<ConfigAttribute> attrs = SecurityConfig.createSingleAttributeList ("ROLE_USER");
It will need to be replaced with the following code:
List<ConfigAttribute> attrs = SecurityConfig.createList("ROLE_USER");
Read now
Unlock full access