加入shiroFillter之后spring注解失效了

来源:4-2 Shiro集成Spring-从数据库获取数据

慕用1749275

2018-07-10 18:41

WARNING: Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'shiroFilter' defined in URL [file:/D:/办公软件/Java/apache-tomcat-7.0.82/wtpwebapps/shiro/WEB-INF/classes/spring/spring.xml]: Cannot resolve reference to bean 'securityManagers' while setting bean property 'securityManager'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'securityManagers' defined in URL [file:/D:/办公软件/Java/apache-tomcat-7.0.82/wtpwebapps/shiro/WEB-INF/classes/spring/spring.xml]: Cannot resolve reference to bean 'realms' while setting bean property 'realm'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'realms': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private com.shiro.dao.UserDao com.shiro.realm.CustomRealm.userDao; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [com.shiro.dao.UserDao] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}

七月 10, 2018 6:37:17 下午 org.springframework.web.context.ContextLoader initWebApplicationContext

SEVERE: Context initialization failed


写回答 关注

2回答

  • 未卜先知
    2018-07-22 12:58:36
    @Component
    public class UserDaoImpl implements UserDao{

    实现类上加注解了没?

  • 阿里资深架构师
    2018-07-18 16:02:20

    com.shiro.dao.UserDao注入失败,Spring容器中没有这个bean

Shiro安全框架入门

从零入门Shiro安全框架

48049 学习 · 347 问题

查看课程

相似问题