I am using spring security for my application. Following are some lines from my applicationContext-Security.xml to set access as ROLE_USER for /offers and /add links and no filters for /list link.
<intercept-url pattern="/list*" filters="none" />
<intercept-url pattern="/offers**" access="ROLE_USER" />
<intercept-url pattern="/add/**" access="ROLE_USER" />
I want to show LOGIN link when user is not logged in and when user logs in to system then this link should be replaced by LOGOUT. For that I tried following code in my jsp page.
<security:authorize ifNotGranted="ROLE_USER">
<a href="login.jsp">Login</a>
</security:authorize>
<security:authorize ifAnyGranted="ROLE_USER">
Welcome <security:authentication property="principal.username"/>!
| <a href="logout.htm">Logout</a>
</security:authorize>
When I am on /list link, It shows "LOGIN" link. After login if user redirected to /offers or /add link then it shows "Welcome UserName | LOGOUT" which is working as per requrment. But Problem is, when user logs in and redirected to /list page then also it shows "LOGIN"(USER is already logged in) It should show "Welcome UserName | LOGOUT"
Help me in this scenario, What should I do to get it working? Thank you in advance.