我正在尝试将我的spring安全配置从xml迁移到java。
像这样的案子看起来很容易:
<security:custom-filter ref="myFilter" position="FORM_LOGIN_FILTER" />
spring的文档清楚地说明了form\u login\u filter等同于usernamepasswordauthenticationfilter,替换为:
http.addFilterAt(myFilter, UsernamePasswordAuthenticationFilter.class);
我的问题是我如何才能做到这一点:
<security:custom-filter position="LAST" ref="myOtherFilter" />
我还没有找到一种用java来表示这一点的方法。我们将不胜感激。
暂无答案!
目前还没有任何答案,快来回答吧!