为什么将类注释为@Service不创建bean?

时间:2011-11-17 19:22:35

标签: java spring java-ee ejb

我有这样的课程:

@Service("userDetailsService") 
public class MyUserDetailsService implements UserDetailsService {
    ...

并尝试做:

<authentication-manager>
    <authentication-provider user-service-ref="userDetailsService">
    </authentication-provider>
</authentication-manager>

我遇到了以下错误:

  

设置时无法解析对bean'userDetailsS​​ervice'的引用   bean属性'userDetailsS​​ervice';嵌套异常是   org.springframework.beans.factory.NoSuchBeanDefinitionException:没有   名为'userDetailsS​​ervice'的bean已定义

是否真的有必要声明bean?就像这样:

<beans:bean id="myUserDetailsService" class="my.package.services.MyUserDetailsService" />

修改

这是我的security.xml文件:

<beans:beans xmlns="http://www.springframework.org/schema/security"
    xmlns:beans="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:jdbc="http://www.springframework.org/schema/jdbc" 
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
           http://www.springframework.org/schema/jdbc
           http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd
           http://www.springframework.org/schema/security
           http://www.springframework.org/schema/security/spring-security-3.0.xsd">

    <http>
        <form-login login-page="/login/"
            authentication-failure-url="/fail/" />
        <logout logout-success-url="/" />
    </http>

    <context:annotation-config />
    <context:component-scan base-package="my.package" />

    <authentication-manager>
        <authentication-provider user-service-ref="myUserDetailsService">
            <!-- <password-encoder hash="md5" /> -->
        </authentication-provider>
    </authentication-manager>

</beans:beans>

导致:

  

匹配的通配符是严格的,但是找不到声明   元素'context:annotation-config'。

4 个答案:

答案 0 :(得分:4)

如果使用注释来指定bean,则需要在配置中为scan the classpath添加一个条目。

<context:component-scan base-package="org.example"/>

答案 1 :(得分:4)

您缺少上下文的架构位置。

所以你的xml应该以:

开头
<beans:beans xmlns="http://www.springframework.org/schema/security"
    xmlns:beans="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:jdbc="http://www.springframework.org/schema/jdbc" 
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
           http://www.springframework.org/schema/jdbc
           http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd
           http://www.springframework.org/schema/security
           http://www.springframework.org/schema/security/spring-security-3.0.xsd
           http://www.springframework.org/schema/context 
           http://www.springframework.org/schema/context/spring-context-3.0.xsd">

答案 2 :(得分:1)

@Service扩展@Component,允许classpath scanning

您可以同时启用classpath scanningannotations

<context:annotation-config />
<context:component-scan base-package="com.package.a,com.b" />

我不知道您使用的是哪个版本。试试这个。

<authentication-manager>
    <authentication-provider user-service-ref="userDetailsService">
        <!-- <password-encoder hash="md5" /> -->
    </authentication-provider>
</authentication-manager>

除非您提供名称,否则它将是班级名称。但是你提供了相同的名称,但在配置文件中说明了另一个名称。

如果@Service没有名字,那就没关系了。

答案 3 :(得分:1)

使用<beans:import resource="" />

导入spring-security.xml中的其他xml文件

您可以做的另一件事是使用

加载web.xml文件中的所有xml文件
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
path to the xml files separated by commas
</param-value>
</context-param>