Spring 源码阅读笔记(一)

ApplicationContext ctx = new ClassPathXmlApplicationContext("classpath*:conf/appContext.xml");
这样写通配符产生的效果是  将会加载类路径下文件及jar包中文件  ,以前一直认为只是加载类路径下的文件,忽略了类路径中jar包中文件,看来阅读下源码还是很有必要的

你可能感兴趣的:(spring,源码)