标签:
概念解释:
classpath : 即项目中WEB-INF下面的classes目录;
应用:
(1)ApplicationContext ctx = new ClassPathXmlApplicationContext("xxxx.xml"); //读取classPath下的spring.xml配置文件 (2)ApplicationContext ctx = new FileSystemXmlApplicationContext("WebRoot/WEB-INF/xxxx.xml"); //读取WEB-INF 下的spring.xml文件
标签:
原文地址:http://www.cnblogs.com/springlight/p/5955860.html