路径问题
ApplicationContext act=new FileSystemXmlApplicationContext("/WebRoot/WEB-INF/applicationContext.xml");
也可以把配置文件复制到src目录下
ApplicationContext act=new FileSystemXmlApplicationContext("/src/applicationContext.xml");
src和WebRoot是同级的,你的类是在src下面,可是applicationContext.xml你却是放在WEB-INF下面,WEB-INF是在WebRoot下面的,所以
String path="WebRoot/WEB-INF/applicationContext.xml";
啥也不用写 直接写applicationContext.xml就好用绝对的 ,但是你点看你的配置文件名是不是applicationContext.xml