Hi everyone,
I have a question. In Struts, I have an Action that deals with user authentication, i.e., I took the user's credentials and used a DAO to validate user credentials. I want to maintain the same setup in Spring. I'm using Spring 3.0.3 RELEASE.
My question is, I've read Spring Security and in there it specifies JDBC backend "Validation" provider. I want to know, how would, if the user clicked "login" that it submits the credentials to my controller to check for valid authentication?
The reason I want to do this that way is that I have a Service that handles user authentication and authorization.
Thanks in advance.
PS How do I make some controller secure in Spring?
PPS I'm new to Spring