Spring Security

1、使用Spring Security的时候使用
<security:intercept-url pattern="/login.htm*" security="none"/>
报错: Configuration problem: The use of "filters='none'" is no longer supported
原因是:3.0以上以及不支持这种写法了
解决方案:修改为:
<security:http pattern="/login.htm*" security="none"/>

你可能感兴趣的:(spring,Security)