其他分享
首页 > 其他分享> > SpringData JPA 报错 NoSuchBeanDefinitionException

SpringData JPA 报错 NoSuchBeanDefinitionException

作者:互联网

最近学习学习使用SpringData JPA,刚开始的示例项目都没有问题。直到创建了一个SpringBoot项目,启动类和Repository以及Entity不在同一包中。结果在测试Repository接口时报错:

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'xxx.xxx.RepositoryTest': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'xxx.xxx.xxx' available: expected at least 1 bean which qualifies as autowire candidate.

没有自动生成接口的实现类。刚开始以为是Repository接口没有扫描到,也确实和启动类在不同的包中中,于是在启动类上添加Repository和Entity所在的包

@SpringBootApplication(scanBasePackages = {"xxx.xxx.xxx","yyy.yyy.yyy"})

结果还是报同样的错误。在包下写其他的自定义接口和实现类,SpringBoot可以扫描到。
这就奇怪了...

求助百度,原来这种错误有两种解决办法:

采用方案二,新建一个配置类

import org.springframework.boot.autoconfigure.domain.EntityScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;

@Configuration
@EnableJpaRepositories(basePackages = "xxx.xxx.xxx")
@EntityScan(basePackages = "xxx.xxx.xxx")
public class JPAConfig {
}

问题解决。

但是为什么在@SpringBootApplication里scanBasePackages添加的包对于JPA不行呢,其他的组件明明可以扫描到啊,有时间还待研究...

参考文章
SpringBoot JPA 中无法注入 JpaRepository 接口的问题及解决方案

标签:包中,Repository,JPA,xxx,springframework,NoSuchBeanDefinitionException,报错,接口,org
来源: https://www.cnblogs.com/dalelee/p/16558059.html