当前位置: 首页 > 知识库问答 >
问题:

我使用Spring4+Hibernate4遇到以下错误:

米浩穰
2023-03-14

org.springframework.beans.factory.beanCreationException:创建名为“student controller”的bean时出错:注入autowired依赖项失败;嵌套异常为org.springframework.beans.factory.BeanCreationException:无法自动连接字段:public edu.java.spring.dao.impl.studenthibernatedaoimpl edu.java.spring.controller.studentcontroller.studentdao;嵌套异常为org.springframework.beans.factory.beanCreationException:创建名为“student dao”的bean时出错:注入autowired依赖项失败;嵌套异常为org.springframework.beans.factory.beanCreationException:无法自动连接字段:public org.springframework.orm.hibernate3.localsessionfactorybean edu.java.spring.dao.impl.studenthibernatedaoimpl.sessionFactory;嵌套异常为org.springframework.beans.factory.NoSuchBeanDefinitionException:未找到依赖项得[org.springframework.orm.Hibernate3.LocalSessionFactoryBean]类型得合格bean:需要至少一个符合此依赖项自动候选条件得bean.依赖项注释:{@org.SpringFramework.Beans.Factory.Annotation.AutoWired(required=true)}

共有1个答案

雷曜灿
2023-03-14

没有关于您的配置或类的更多信息,有两种可能的解决方案

  1. 您没有扫描包含类的包
  2. u@autowired没有使用Spring知道的任何东西进行注释,如@repositoy@service@component
 类似资料: