在JUnit中创建上下文配置时出错

时间:2019-05-17 03:47:17

标签: hibernate session context-configuration

在通过上下文配置运行JUnit时,我遇到java.lang.NoSuchMethodError异常。 spring-hibernate-jpa.xml在不同模块中的位置,如下所述 - 流 ----奔流 -------BNEDEXTest1.java ----普通 ------- spring-hibernate-jpa.xml;

公共类BENDEXTest1 {

public BENDATAInboundFileProcessorImpl bendataInboundFileProcessor;

@Before
public void init(){
    ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("classpath*: META-INF/spring-hibernate-jpa.xml");
    bendataInboundFileProcessor = context.getBean(BENDATAInboundFileProcessorImpl.class);
    bendataInboundFileProcessor = new BENDATAInboundFileProcessorImpl();
}
@Test
public void testBENDEXFileRead() throws Exception {
    boolean returnValue = bendataInboundFileProcessor.execute();
    assertTrue(returnValue);
}

}

0 个答案:

没有答案