| Author |
Problem with Spring Security Login
|
Ismael Rodriguez
Greenhorn
Joined: Dec 26, 2012
Posts: 6
|
|
I'm developing login page with spring security but when I start my project automatically redirected to the login page. I've a in my web.xml with redirect to index.xhtml, why is redirect to login.xhtml?
web.xml
applicationContext.xml
|
 |
Petri Kainulainen
Greenhorn
Joined: Dec 29, 2012
Posts: 2
|
|
The reason of this behavior is that anonymous users do not have roles. In other words, the problem is found from your application context configuration file:
You should use the permitAll() expression here. Also, you need to enable expressions since they are disabled by default. The relevant part of your application context configuration file should look as follows:
|
 |
 |
|
|
subject: Problem with Spring Security Login
|
|
|