spring - @ContextConfiguration无法在 src/test/resources 中加载配置文件
我尝试使用以下抽象类在src / test / resources类路径中加载spring配置文件:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations={"classpath:/applicationContext.xml"})
public class BaseIntegrationTests {
}
我有应用程序Context.xml文件在src / test / resources中,但spring无法加载它。
谢谢。