Spring Framework 中文说明文档

来源:互联网 发布:check windows version 编辑:程序博客网 时间:2024/06/06 02:18

Part I. Spring Framework 综述

The Spring Framework is a lightweight solution and a potential one-stop-shop for building your enterprise-ready applications. However, Spring is modular, allowing you to use only those parts that you need, without having to bring in the rest. You can use the IoC container, with any web framework on top, but you can also use only the Hibernate integration code or the JDBC abstraction layer. The Spring Framework supports declarative transaction management, remote access to your logic through RMI or web services, and various options for persisting your data. It offers a full-featured MVC framework, and enables you to integrate AOP transparently into your software.

Spring Framework 是一个轻量级的解决方案和一个潜在的一站式为您构建企业级应用程序. 尽管这样, Spring 是模块化的, 允许你只使用你需要的一部分, 无需引用其余。你可以使用IoC container, 配合一些优秀的web framework, 并且您当然可以集成Hibernate 或者 JDBC 抽象层。Spring Framework支持声明式事务管理,可以通过RMI或者WebService远程调用你的逻辑,支持通过各种配置项持久化数据。它提供功能全面的 MVC 框架, 能够透明地集成AOP到您的软件系统中。

Spring is designed to be non-intrusive, meaning that your domain logic code generally has no dependencies on the framework itself. In your integration layer (such as the data access layer), some dependencies on the data access technology and the Spring libraries will exist. However, it should be easy to isolate these dependencies from the rest of your code base.

Spring采用非侵入式(non-intrusive)设计,意味着你的业务逻辑代码基本上不用依赖于框架本身。在你的集成层 (例如数据访问层),数据访问技术和Spring之间存在一些依赖关系,尽管这样,从你的代码库隔绝这些依赖关系是非常容易的。

这是一份针对于Spring框架特色的参考指南。如果你对文档有一些请求、意见、疑问,请发送Email给我。个人能力有限,还请不吝赐教。

0 1
原创粉丝点击