I am using spring security. also i am new to spring security. what does below line indicates(). Please help me?
<security:intercept-url pattern="/MyPath/**" access="IS_AUTHENTICATED_ANONYMOUSLY"/>
Thanks!
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.
Spring Security Anonymus authentication is a nice way to handle not autenticated users with the same concepts like authenticated once
@See Spring Security Reference: Chapter 12 Anonymous Authentication
At least it mean that every url that match
/MyPath/**can be accessed without restrictions.