
spring
画夜
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
获得spring源码
spring 在github中地址:https://github.com/spring-projects/spring-framework1.可以通过git或者github或者进入页面zip下载2.在eclipse中新建项目,项目名spirng-framework,项目类型 General下的project3.点击空项目import源代码,选择General下的File Syste原创 2015-11-15 14:35:27 · 438 阅读 · 0 评论 -
spring源码目录模块的作用
spring框架是个分层框架,整体架构图参考:《Spring源代码深度解析》Core Container(核心容器)包含Core、Beans、Context和Expression Language模块。spring-core:主要包含Spring框架基本的核心工具类,Spring的其他组件都要使用到这个包里的类,Core模块是其他组件的基本核心。spring-beans:是所有应用原创 2015-11-15 16:40:32 · 1038 阅读 · 0 评论 -
spring MVC环境搭建
http://www.cnblogs.com/yangzhilong/p/3724934.html1、新建web项目,并在web.xml加入spring mvc的servlet spring mvc容器和servlet的定义 --> servlet> servlet-name>springMVCservlet-name> servlet-class>or转载 2015-01-12 15:02:36 · 350 阅读 · 0 评论 -
Junit4+spring测试类
junit4 maven配置 junit junit 4.11 test 配置文件放在当前项目的 src/main/resource或src/main/config测试类特点@RunWith(SpringJUnit4ClassRunner.class)@ContextConfiguration(locations="classpath:sp原创 2015-08-04 15:29:13 · 494 阅读 · 0 评论