配置Spring Security 3.2之后,_csrf.token
未绑定到请求或会话对象。
这是spring安全配置:
<http pattern="/login.jsp" security="none"/>
<http>
<intercept-url pattern="/**" access="ROLE_USER"/>
<form-login login-page="/login.jsp"
authentication-failure-url="/login.jsp?error=1"
default-target-url="/index.jsp"/>
<logout/>
<csrf />
</http>
<authentication-manager>
<authentication-provider>
<user-service>
<user name="test" password="test" authorities="ROLE_USER/>
</user-service>
</authentication-provider>
</authentication-manager>
login.jsp文件
<form name="f" action="${contextPath}/j_spring_security_check" method="post" >
<input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}" />
<button id="ingresarButton"
name="submit"
type="submit"
class="right"
style="margin-right: 10px;">Ingresar</button>
<span>
<label for="usuario">Usuario :</label>
<input type="text" name="j_username" id="u" class="" value=''/>
</span>
<span>
<label for="clave">Contraseña :</label>
<input type="password"
name="j_password"
id="p"
class=""
onfocus="vc_psfocus = 1;"
value="">
</span>
</form>
并呈现下一个html:
<input type="hidden" name="" value="" />
结果是403 HTTP状态:
Invalid CSRF Token 'null' was found on the request parameter '_csrf' or header 'X-CSRF-TOKEN'.
更新 在进行一些调试之后,请求对象会脱离DelegatingFilterProxy的形式,但是在CoyoteAdapter的第469行中,它执行request.recycle();。删除所有属性...
我在JDK 1.7的Tomcat 6.0.36、7.0.50中进行了测试。
我还不了解这种行为,相反,如果有人指出我对与CSRF一起使用的Spring Security 3.2进行一些应用程序示例战争的方向是可能的。
spring-security.xml
Spring 4.0.0 RELEASE(GA),Spring Security 3.2.0 RELEASE(GA)(尽管它与Struts 2.3.16集成在一起),这件事对我也有效(但是存在差异)。尝试单独使用Spring MVC)。但是,当请求多部分地上传状态为403的文件时,它失败了。我正在努力寻找解决方案。