I have Spring Security working to the point where it asks me for a login to the page I'm looking to restrict, i.e. I have this in my applicationContext:
Is there a way to simply restrict access to this page and not even redirect a user to a login form? I'm basically looking for a way to restrict public access to this page without deleting it and implement single sign-on later. The other app from which users will be signing on is not available to me yet.Code:<http use-expressions="true"> <intercept-url pattern="/general/test.jsp" access="denyAll" /> <form-login /> </http>
Thanks


Reply With Quote