I want to know how to use the Filter concept in Spring.
I have web application in that i have lot of jsp pages which has login.jsp is the first page. So user can only go via login.jsp no one can not to access any jsp url directly.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Filters have nothing to do with Spring. Just wire them into your web.xml if you’d like to use them.
You also have the option of implementing security – authentication and authorization – using Spring Security. I’d recommend that you look at that if you want to use Spring to solve this problem.