I have a single method that I want to allow both anonymous and authenticated access to.
I am using Spring Security 3.2.4 with java based configuration.
The o
I saw the same issue. Make sure you didn't call super.configure(http); anyRequest().authenticated(); is called by default.
super.configure(http);
anyRequest().authenticated();