我使用Spring Oauth2,身份验证(/oauth/authorize
)与http-basic身份验证配合使用。
现在我想将其更改为<form-login>
。 (我已经有一个登录表单,我想使用)
但每次我插入<security:form-login />
标记时,都会出现以下错误:
... org.springframework.beans.factory.NoSuchBeanDefinitionException:没有 独特的豆类 [org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter] 定义:预期的单个匹配bean但找到2: [org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter#0, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter#1] ...
如何使用相同的过滤器?