2

私は以下のようなxmlにBeanを持っています

<bean id="theCustomAuthenticationProvider" class="test.custom.CustomAuthenticationProvider">
<security:custom-authentication-provider />

上記のようにBeanに入れると、security:custom-authentication-providerが何を意味するのかわかりますか?

b。作成する必要がありますか

<bean id="authenticationManager" class="org.springframework.security.providers.ProviderManager"> ref to theCustomAuthenticationProvider 

xmlで?

c。bの場合。答えは「はい」です。あるいは、CustomAuthenticationProviderinsideタグのrefを使用できますか?

4

1 に答える 1

3

アイデアは、Beanにマークを付けることです。

<security:custom-authentication-provider />

AuthenicationManagerスプリングセキュリティによって提供される認証プロバイダーとしてBeanを登録します。bは必要ありません。

于 2009-05-29T07:52:52.237 に答える