1

私は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

どうすればテストを実行できますか?

4

0 に答える 0