spring常识识记


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有关的配置)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值