在通过上下文配置运行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);
}
}