在我的测试类中注入entityManager时遇到问题。我认为这是因为我无法在我的测试类中加载我的spring上下文。
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'noteDeFraisDAO': Injection of persistence dependencies failed; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'javax.persistence.EntityManagerFactory' available
这是我的测试类
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = {NoteDeFraisTestConfig.class})
@Transactional
@DirtiesContext(classMode = DirtiesContext.ClassMode.AFTER_CLASS)
public class NoteDeFraisDAOIT
{
@Autowired
private NoteDeFraisDAO noteDeFraisDAO;
@Test
public void myTest()
{
}
}
这是测试的配置,我知道当我使用new时,dao中不会注入entityManager,但我不知道该怎么办。
@Configuration
public class NoteDeFraisTestConfig {
@Bean
NoteDeFraisDAO noteDeFraisDAO()
{
return new NoteDeFraisDAO();
}
}
我试图将我的ContextConfiguration设置为我的applicationContext,但它不起作用我认为这是因为目录WEB-INF不属于classpath。我该如何解决这个问题?
感谢。
更新
这是我的最终测试类
@WebAppConfiguration
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration({"file:web/WEB-INF/applicationContext.xml", "file:web/WEB-INF/db-config.xml","file:web/WEB-INF/dispatcher-servlet.xml","file:web/WEB-INF/security-config.xml"})
@Transactional
public class NoteDeFraisDAOIT
{
@Autowired
private NoteDeFraisDAO noteDeFraisDAO;
@Test
public void myTest()
{
}
}
答案 0 :(得分:1)
是的,问题是为您的测试加载的ApplicationContext
不包含LocalContainerEntityManagerFactoryBean
。假设在applicationContext.xml
中正确声明,下面的链接解决方案将有所帮助。
我试图将我的ContextConfiguration设置为我的applicationContext,但它不起作用我认为这是因为目录WEB-INF不属于classpath。我该如何解决这个问题?