我正在尝试从目录加载文件名SpringConfig.xml
resources\cfg\SpringConfig.xml
使用
context = new ClassPathXmlApplicationContext("/cfg/SpringConfig.xml")
这不起作用,但是如果我将位置更改为
resources\SpringConfig.xml
的话,它也可以正常工作context = new ClassPathXmlApplicationContext("SpringConfig.xml")
但我想使用前一个,有人可以帮助我解决此问题吗?
最佳答案
在字符串中使用/
代替\
。