尝试使用我创建的一些 Spring 配置文件运行 JUnit 测试时遇到问题。实际上,配置文件确实可以正常工作,但无法自动装配的存储库 bean 除外。
这是我在 spring-integration-context.xml 中用于配置持久性的代码片段:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
.... Some namespaces definitions
<beans profile="dev">
<jdbc:embedded-database id="dataSource" type="H2" />
<!-- Define the JPA transaction manager -->
<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
<constructor-arg ref="entityManagerFactory" />
</bean>
<bean id="entityManagerFactory"
class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="jpaVendorAdapter" ref="vendorAdaptor" />
<property name="packagesToScan" value="guiatv.persistence.*" />
</bean>
<bean id="abstractVendorAdaptor" abstract="true">
<property name="generateDdl" value="true" />
<property name="database" value="H2" />
<property name="showSql" value="false" />
</bean>
<bean id="entityManager"
class="org.springframework.orm.jpa.support.SharedEntityManagerBean">
<property name="entityManagerFactory" ref="entityManagerFactory" />
</bean>
<bean id="vendorAdaptor"
class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter"
parent="abstractVendorAdaptor">
</bean>
</beans>
... Some other beans, some of them with the same "dev" profile
</beans>
所以我认为用“beans profile”元素包装整个持久性配置就足够了。
现在,从我的 JUnit 测试类:
@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes = ApplicationTest.class)
@ActiveProfiles("dev")
public class ScheduleLoaderTests {
@Autowired
ScheduleLoader schedLoader;
@Autowired
ScheduleRepository shedRep;
@Test
public void someTest() { ... }
}
然后我用以下方法注释我的 ApplicationTest 类:
@ImportResource("classpath:/META-INF/spring/integration/spring-integration-context.xml")
但是当我运行测试时,我得到以下异常:
Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [guiatv.persistence.repository.ScheduleRepository] 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)}
请注意,在我的测试类中,ScheduleLoader 以前是自动装配的,实际上该 bean 也在开发配置文件中。如果我尝试在没有 @ActiveProfiles("dev")注释的情况下运行测试,那么ScheduleLoader failed autowiring 会抛出异常,正如预期的那样(因为它仅在 dev 配置文件中)。
那么弹簧配置文件和我的持久性配置有什么问题?
PD:我已确保我的存储库和实体类在其中
guiatv.persistence.*
包裹。
顺便说一句,我使用的是 Spring Boot,所以我还尝试通过在 application.properties 文件中添加spring.profiles.active=dev而不是编写 @ActiveProfiles("dev") 注释来使其工作。
更新
此外,如果我尝试删除每个“beans profile”元素,以便每个组件都是根“beans”元素的子元素,那么无论没有 @ActiveProfiles("dev") 注释或 @ActiveProfiles( “默认”)注释。