在WEB工程下搭建spring2.5
1.创建WEB工程
?
2.添加spring2.5.6必须得jar包,spring.jar和common-logging.jar,
3.新建spring的配置文件,可以是一或多个配置文件,开发中大部分都会是多个配置文件
4.在web.xml来加载spring
<beans> <import resource="service.xml"/> <import resource="dao.xml"/></beans>
5.发布测试