0

我正在实现自定义的 MyUsernamePasswordAuthenticationFilter。

我想将它配置为我的弹簧安全性。

<sec:http entry-point-ref="myAuthenticationEntryPoint" create-session="always">
        <sec:form-login login-processing-url="/login" 
                       username-parameter="username" 
                       password-parameter="password" 
              authentication-failure-handler-ref="myAuthenticationFailureHandler" 
              authentication-success-handler-ref="myLoginSuccessHandler" />
 <sec:logout logout-url="/logout" success-handler-ref="myLogoutSuccessHandler"/>        

    <sec:custom-filter ref="myPreAuthFilter" before="PRE_AUTH_FILTER"/>
    <sec:custom-filter ref="myFirstFilter" before="LAST"/>
  </sec:http>

如何更改它以支持我的新自定义文件管理器。

4

0 回答 0