我使用maven,git和netbeans。 在netbeans中,有Other Test Sources文件夹,在这个文件夹中我有src / test / resources。 在这个文件夹中,我有一个包spring,它包含web-context.xml,service-context.xml和mvc-context.xml
在junit测试中我做:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {
"classpath:/spring/web-context.xml",
"classpath:/spring/services-context.xml",
"classpath:/spring/mvc-context.xml"})
public class repositoryTest {
...
}
java.lang.IllegalStateException: Failed to load ApplicationContext
class path resource [web-context.xml] cannot be opened because it does not exist
我该如何运行测试?