I am trying basic spring security set up. I am using 3.1.0.RELEASE
I have in the spring security xml as follows:
<security:http auto-config='true'>
<security:intercept-url pattern="/**"...
Type: Posts; User: jrpalla; Keyword(s):
I am trying basic spring security set up. I am using 3.1.0.RELEASE
I have in the spring security xml as follows:
<security:http auto-config='true'>
<security:intercept-url pattern="/**"...
Here is the Class I wrote:
import java.io.IOException;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import...
Thanks for your input. In my case user is not anonymous. When I used my own custom access denied handler, this was fixed.
I have the following Spring security configuration:
<security:http entry-point-ref="preAuthenticateEntryPoint">
<security:custom-filter position="PRE_AUTH_FILTER"...