我试图了解为什么我无法自动装配类库,但我可以在相同的包中为相同的测试自动装配一个接口存储库。当我启动应用程序时,相同的存储库按预期工作。
首先,错误:
Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.app.person.repository.PersonRepository' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}
at org.springframework.beans.factory.support.DefaultPersonbleBeanFactory.raiseNoMatchingBeanFound(DefaultPersonbleBeanFactory.java:1493)
at org.springframework.beans.factory.support.DefaultPersonbleBeanFactory.doResolveDependency(DefaultPersonbleBeanFactory.java:1104)
at org.springframework.beans.factory.support.DefaultPersonbleBeanFactory.resolveDependency(DefaultPersonbleBeanFactory.java:1066)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:585)
... 28 more
我有一个非常简单的例子。测试:
@RunWith(SpringRunner.class)
@DataJpaTest
public class PersonRepositoryTest {
@Autowired
private PersonRepository personRepository; // fail...
@Autowired
private PersonCrudRepository personCrudRepository; // works!
@Test
public void findOne() {
}
}
存储库类:
@Repository
public class PersonRepository {
//code
}
存储库界面:
@Repository
public interface PersonCrudRepository extends CrudRepository<Person, Long> {
}
在bad experience with this same error之后,我试图在我的配置中找到一些细节或测试导致此问题的原因。另一种可能性是@DataJpaTest
不支持类存储库。
答案 0 :(得分:14)
我认为我对这个问题是正确的。找到post on Github后阅读Spring Documentation:
如果要测试JPA应用程序,可以使用@DataJpaTest。通过 默认情况下,它将配置内存中的嵌入式数据库,扫描 @Entity类并配置Spring Data JPA存储库。定期 @Component bean不会加载到ApplicationContext中。
我的PersonRepository
被视为常规@Component
,因为它不是Spring Data JPA存储库(接口是)。所以,它没有加载。
替代方法是使用@SpringBootTest
代替@DataJpaTest
。
答案 1 :(得分:2)
另一个替代方案可能是@Import
,如https://stackoverflow.com/a/41084739/384674所示。