1.web项目中如果没有在web.xml中配置contextConfigLocation属性则默认会需找WEB-INF下的applicationContext.xml文件(web项目有两种方式加载spring:
org.springframework.web.context.ContextLoaderServlet
或者 org.springframework.web.context.ContextLoaderListener)
2.在web项目web.xml的contextConfigLocation属性配置中可以使用/WEB-INF/applicationContext*.xml这样的配置来加载多个bean配置文件,此时无论各个配置文件是否有相互文件包含说明(import resource)都可以正常加载。
3.一般应用程序中可以使用如下方式获取bean
ApplicationContext aCtx = new FileSystemXmlApplicationContext("classpath:applicationContext.xml");
StudentService service = (StudentService) aCtx.getBean("studentService");
service.doService();
ApplicationContext ctx;
String[] configFiles = new String[] { "/applicationContext.xml", "applicationContext-*.xml" };
ctx = new ClassPathXmlApplicationContext(configFiles);
4.web程序中可以如下方式获取bean
WebApplicationContext ctx = WebApplicationContextUtils.getRequiredWebApplicationContext(this.getServletContext());
StudentService service = ctx.getBean(StudentService.class);
service.doService();
或者参照:
http://shijian0306.iteye.com/blog/174045提供的方式在web中获取bean
附件是spring配置文件示例(与mybatis有关的配置)