Spring 模块

spring 模块

 

spring框架包含许多模块,例如core,bean,context,expression language,aop,aspects,instrumentation,jdbc,orm,oxm,jms,transaction,web,servlet,struts等。这些模块如下图所示,它们分为test, core container, aop,aspects,工具,数据访问/集成,web(mvc/remoting)。

 

test

此层提供了对使用junit和testng进行测试的支持。

 

spring core

spring core容器包含核心,bean,上下文和表达式语言(el)

 

core and beans

这些模块提供ioc和依赖注入功能。

 

context

该模块支持国际化(i18n),ejb,jms,基本远程处理。

 

expression language

它是对jsp中定义的el的扩展。它支持设置和获取属性值,方法调用,访问集合和索引器,命名变量,逻辑和算术运算符,按名称检索对象等。

 

aop, aspects and instrumentation

这些模块支持面向方面的编程实现,您可以在其中使用建议,切入点等来分离代码。

方面模块提供对与aspectj集成的支持。

检测模块为类检测和类加载器实现提供支持。

 

data access / integration

该组包括jdbc,orm,oxm,jms和事务模块。这些模块基本上提供与数据库交互的支持。

 

web

该组包括web,web-servlet,web-struts和web-portlet。这些模块提供了创建web应用程序的支持。

下一节:spring 示例

spring 教程

相关文章