java - Spring安全.DaoAuthenticationProvider : Cannot resolve reference to bean

标签 java spring hibernate spring-mvc spring-security

我正在项目中实现Spring Security。几个小时以来我陷入了僵局。

我收到此错误

Error creating bean with name 'org.springframework.security.authentication.dao.DaoAuthenticationProvider#0': Cannot resolve reference to bean 'UserDAOImpl' while setting bean property 'userDetailsService'; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'myUserDetailService' is defined

项目设置非常简单

spring-security.xml

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

调度程序-servlet.xml

<context:component-scan base-package="app.com,app.com.controller,app.com.dao,app.com.service,app.com.model"/>

    <bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource"
            p:basename="messages"/>

    <bean id="viewResolver"
        class="org.springframework.web.servlet.view.InternalResourceViewResolver">

        <property name="prefix">
            <value>/WEB-INF/view/</value>
        </property>
        <property name="suffix">
            <value>.jsp</value>
        </property>
    </bean>

ApplicationContext.xml

  <context:annotation-config />

    <!-- <context:property-placeholder> XML element automatically registers a new PropertyPlaceholderConfigurer 
    bean in the Spring Context. -->
    <context:property-placeholder location="classpath:database.properties" />

    <!-- enable the configuration of transactional behavior based on annotations -->
    <tx:annotation-driven transaction-manager="hibernateTransactionManager"/> 

    <!-- Creating DataSource -->
      <bean id="dataSource"
        class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName" value="${database.driver}" />
        <property name="url" value="${database.url}" />
        <property name="username" value="${database.user}" />
        <property name="password" value="${database.password}" />
      </bean>

    <!-- To persist the object to database, the instance of SessionFactory interface is created. 
SessionFactory is a singleton instance which implements Factory design pattern. 
SessionFactory loads hibernate.cfg.xml and with the help of TransactionFactory and ConnectionProvider 
implements all the configuration settings on a database. -->

<!-- Configuring SessionFactory -->
    <bean id="sessionFactory"
        class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
        <property name="dataSource" ref="dataSource" />
        <property name="annotatedClasses">
            <list>
                <value>app.com.model.User</value>
                <value>app.com.model.Roles</value>
                <value>app.com.BaseEntity</value>
            </list>
        </property>
        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.dialect">${hibernate.dialect}</prop>
                <prop key="hibernate.show_sql">${hibernate.show_sql}</prop>
                <prop key="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}</prop>             
            </props>
        </property>
    </bean>

<!-- Configuring Hibernate Transaction Manager -->
    <bean id="hibernateTransactionManager"
        class="org.springframework.orm.hibernate3.HibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactory" />
    </bean>

    </beans>

CustomUserDetailsS​​ervice.java

@Service("myUserDetailService")
@Transactional
public class CustomUserDetailsService implements UserDetailsService {

    @Autowired
    private UserDAO userDAO;

    /*@Override
    public UserDetails loadUserByUsername(String arg0)
            throws UsernameNotFoundException, DataAccessException {
        // TODO Auto-generated method stub
        return null;
    }

}

我还尝试在dispatcher-servlet.xml和application-context.xml中声明bean,但它不起作用

检查了上下文组件基础包。它正在扫描所有其他存在的类,一切都很好。当我从身份验证提供程序中删除 myUserDetailService 时,服务器启动正常,没有任何错误。

我真的很累。谁能帮我解决这个问题吗?

最佳答案

将定义移至上下文文件后可以正常工作的原因是,在 Spring 中,调度程序 servlet 内的定义仅对 mvc 可见,而上下文内的定义是全局的(对于 servlet 和安全性),这里是一个清楚解释的页面 https://weblogs.java.net/blog/sgdev-blog/archive/2014/07/05/common-mistakes-when-using-spring-mvc

关于java - Spring安全.DaoAuthenticationProvider : Cannot resolve reference to bean,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22747108/

相关文章:

java - Hibernate 添加到 List 时重新创建连接表

java - 奇怪的行为: export CLASSPATH=$(JARS=(./lib/*.jar); IFS=:; echo "${JARS[*]}")

java - 使用 RestTemplate 获取模型对象

spring - 使用 Spring Boots application.properties 优化 JDBC 获取大小

java - 在线考试中的 Struts Spring 和 Hibernate 集成

java - 如何将两个相关对象以一对一关系保存到数据库中

java - PDF签名 itext pkcs7 多重签名

JAVA 剩余两个日期路径参数或查询参数

java - 如何在应用程序启动时从 java 代码更改 Hibernate connection.url 属性

java - gradle jcenter 替代品或镜像