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

2024-11-28 14:28:46
推荐回答(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