欢迎来到天天文库
浏览记录
ID:6119573
大小:43.50 KB
页数:8页
时间:2018-01-03
《spring 的在web 工程中加载》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、Spring 的在WEB 工程中加载(2009-03-2314:08:32)标签:it分类:spring在Web工程中启动Spring2.0的三种方法:(一)利用Spring自带的Listener(推荐)-org.springframework.web.context.ContextLoaderListener=======================================配置如下:在web.xml中配置spring框架所需要的配置内容contextConfigL
2、ocation------------固定的内容/WEB-INF/classes/spring.xml-创建的spring的配置文件的路径 org.springframework.web.context.ContextLoaderListener 配置完毕,可以启动spring容器了!=========
3、=====(二)利用Spring自带的servlet-org.springframework.web.context.ContextLoaderServlet 配置如下: 在web.xml中配置spring框架所需要的配置文件 contextConfigLocation------------固定的内容 /WEB-INF/classes/spring.xml----创建spring的配置文件的路径<
4、/context-param> context--固定的内容 org.springframework.web.context.ContextLoaderServlet 1配置完毕,可以启动spring容器了! 可见上面两种方法来启动Spring都需要配置元素,来指定s
5、pring的配置文件的位置。==============(三)利用第三方的WEB框架定义的如:struts框架=========配置如下:在Struts的配置文件中配置文配置完毕,可以启动sp
6、ring容器了! Spring 有连个核心接口: BeanFactory:BeanFactory是Spring的最基本的接口, ApplicationContext: BeanFactory的子接口,因此也成为Spring的上下文对象。很多时候不使用BeanFactory,而使用ApplicationContext的实例对象,他增强了BeanFactory的功能。 BeanFactory的实现类很多,主要有: (1)org.springframework.beans.factory.xml.X
7、mlBeanFactory类; (2)ApplicationContext(子接口),其实现类有: org.springframework.context.support.FileSystemXmlApplicationContext; org.springframework.context.support.ClassPathXmlApplicationContext。(一般使用这个实现类) 代码片段(1):---定义数据源bean,利用c3p0数据源实现
8、eanname="dataSource"class="com.mchange.v2.c3p0.ComboPooledDataSource">
此文档下载收益归作者所有