0

我正在尝试创建一个简单的 SpringBoot DB 单元存储库测试,但我得到了:

NoSuchBeanDefinitionException:没有可用的“example.ItemRepository”类型的合格 bean:预计至少有 1 个有资格作为自动装配候选者的 bean。依赖注解:{@org.springframework.beans.factory.annotation.Autowired(required=true)}

我的 Gradle 依赖项

compile('org.springframework.boot:spring-boot-starter-data-jpa')
runtime('com.h2database:h2')

testCompile("junit:junit")
testCompile("org.assertj:assertj-core:3.8.0")
testCompile('org.springframework.boot:spring-boot-starter-test')

testCompile("org.dbunit:dbunit:2.4.9")
testCompile("com.github.springtestdbunit:spring-test-dbunit:1.0.0")

我的仓库item-repository/src/main/java/example/ItemRepository

@Component
public interface ItemRepository extends CrudRepository<Item, Long> {
}

我的存储库测试item-repository/src/test/java/example/ItemRepositoryTest

@TestExecutionListeners({DependencyInjectionTestExecutionListener.class, DirtiesContextTestExecutionListener.class,
        TransactionalTestExecutionListener.class, DbUnitTestExecutionListener.class})
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = RepositoryTestConfiguration.class)
@DirtiesContext
public class ItemRepositoryTest {

    @Autowired
    private ItemRepository repository;

    @Test
    @DatabaseSetup("Empty.xml")
    public void save() {
        // Given
        Item item = new Item

        // When
        Item response = repository.save(item);

        // Then
        assertThat(response.getId()).isNotNull();
    }

}

我的测试配置item-repository/src/main/test/example/configuration/RepositoryTestConfiguration

@Configuration
public class RepositoryTestConfiguration {
}

我需要在其中包含什么才能RepositoryTestConfiguration使其正常工作?

注意:我将我的存储库保存在我的班级的单独模块中,Application因此我无法在测试配置中引用该班级

4

2 回答 2

0

哦,好的,因为您使用的是 spring boot,它启用了自动配置。所以只需使用@SpringApplicationConfiguration 而不是@ContextConfiguration。

于 2017-11-02T16:54:56.407 回答
0

您必须启用 jpa 存储库,如以下注释:

@EnableJpaRepositories(basePackages = {"com.hop.repository"})

在您的 RepositoryTestConfiguration 类上,然后您的存储库 bean 可以自动装配。

于 2017-11-02T14:18:03.047 回答