How to achieve below scenario in a Spring MVC application with Shiro security:
If the user not authenticated and requesting for a page, Shiro should redirect to the login page. The user logs in successfully and Shiro redirects to the previously requested page instead of the
successUrlURL
The login part is working alright in my application. Below is a snippet from my existing code
<!-- Shiro filter -->
<bean id="shiroFilter" class="org.apache.shiro.spring.web.ShiroFilterFactoryBean">
<property name="securityManager" ref="securityManager" />
<property name="loginUrl" value="/login" />
<property name="successUrl" value="/dashboard" />
<property name="unauthorizedUrl" value="/error" />
<property name="filterChainDefinitions">
<value>
<!-- !!! Order matters !!! -->
/authenticate = anon
/login = anon
/logout = anon
/error = anon
/static/** = anon
/** = authc
</value>
</property>
</bean>