カスタマイズされた 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>
これを変更して、新しいカスタマイズされたファイラーをサポートするにはどうすればよいですか?