Spring配置文件applicationContext.xml路径问题

2024年11月28日 14:28
有3个网友回答
网友(1):

路径问题
ApplicationContext act=new FileSystemXmlApplicationContext("/WebRoot/WEB-INF/applicationContext.xml");
也可以把配置文件复制到src目录下
ApplicationContext act=new FileSystemXmlApplicationContext("/src/applicationContext.xml");

网友(2):

src和WebRoot是同级的,你的类是在src下面,可是applicationContext.xml你却是放在WEB-INF下面,WEB-INF是在WebRoot下面的,所以
String path="WebRoot/WEB-INF/applicationContext.xml";

网友(3):

啥也不用写 直接写applicationContext.xml就好用绝对的 ,但是你点看你的配置文件名是不是applicationContext.xml