can anyone see an failure in this Spring Security Config File?
After Login the i get a debug message:
Access is denied (user is not anonymous)
This worked for me - hasAuthority("ROLE_USER")
hasAuthority("ROLE_USER")
Try with @RolesAllowed("USER") instead of @RolesAllowed("ROLE_USER"). Eventually you could use hasAuthority("ROLE_USER") or hasRole("USER") instead of hasRole("ROLE_USER") .
@RolesAllowed("USER")
@RolesAllowed("ROLE_USER")
hasRole("USER")
hasRole("ROLE_USER")