开发者社区> 问答> 正文

javaconfig配置的sessionFactory在DAO层怎么注入进来?报错

@Configuration
public class AppConfig {
    @Bean
    public SessionFactory sessionFactory() throws Exception{
        AnnotationSessionFactoryBean factory =new AnnotationSessionFactoryBean();
        factory.setDataSource(dataSource());//设置数据据
        factory.setPackagesToScan(new String[]{"algz.platform"});
factory.afterPropertiesSet();
        return factory.getObject();
    }

DAO:

@Repository("SQLiteDao")
public class SQLiteDaoImpl implements SQLiteDao {
    @Autowired
    private SessionFactory sessionFactory;
    

启动报错:
org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [org.hibernate.SessionFactory] 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), @org.springframework.beans.factory.annotation.Qualifier(value=sessionFactory)}


请问怎样在DAO层注入进来。

展开
收起
爱吃鱼的程序员 2020-06-22 21:25:36 454 0
1 条回答
写回答
取消 提交回答
  • https://developer.aliyun.com/profile/5yerqm5bn5yqg?spm=a2c6h.12873639.0.0.6eae304abcjaIB

    报错信息是什么?他提示说,缺少一个必要的bean 。

    No qualifying bean of type [org后面是什么

    2020-06-22 21:25:54
    赞同 展开评论 打赏
问答地址:
问答排行榜
最热
最新

相关电子书

更多
低代码开发师(初级)实战教程 立即下载
冬季实战营第三期:MySQL数据库进阶实战 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载