<bean id="loginLogAuthenticationSuccessHandler" class="org.springframework.security.web.authentication.SavedRequestAwareAuthenticationSuccessHandler">
<property name="defaultTargetUrl" value="/index.action"></property>
</bean>
这样子配置的时候 登陆成功跳转不到这个action里面去,这个地址 绝对有效不可否认。
直接写<property name="defaultTargetUrl" value="/index.jsp"></property>就直接跳过去了,
但是我的页面全部在web-inf下面 所有希望用action来跳转。
请指点指点,非常感谢!
<security:http auto-config="false" access-denied-page="/403.jsp"
老是跳转到这个403的页面了。不只为何