Spring Framework中文文档

原文链接:https://spring.io/projects/spring-framework

5.1.9版本: Reference Doc.

5.1.9版本:API Doc.

The Spring Framework provides a comprehensive programming and configuration model for modern Java-based enterprise applications - on any kind of deployment platform.

Spring Framework为基于java的企业级应用提供了一个跨平台的全面综合的编程和配置模型。

A key element of Spring is infrastructural support at the application level: Spring focuses on the "plumbing" of enterprise applications so that teams can focus on application-level business logic, without unnecessary ties to specific deployment environments.

Spring的一个关键要素是对于以下应用级别的基础支持:Spring把关注点放在企业级应用的基础配置,这样可以让开发团队更多的关注企业级别的业务逻辑,而不会在开发环境上费过多心思

Support Policy and Migration(支持策略和迁移)

For information about minimum requirements, guidance on upgrading from earlier versions and support policies, please check out the official Spring Framework wiki page

有关早期版本和支持策略的最低要求的信息,请查看the official Spring Framework wiki page

Features(特性)

Core technologies: dependency injection, events, resources, i18n, validation, data binding, type conversion, SpEL, AOP.

核心技术:依赖注入(DI)、事件、资源、i18n(国际化)、验证、数据绑定、类型转换、SpEL、AOP。

Testing: mock objects, TestContext framework, Spring MVC Test, WebTestClient.

测试:模拟对象、TestContext框架、Spring MVC测试、WebTestClient。

Data Access: transactions, DAO support, JDBC, ORM, Marshalling XML.

数据访问:事务处理、DAO支持、JDBC、ORM、编组XML。

Spring MVC and Spring WebFlux web frameworks.

Spring MVC和Spring WebFlux 两个web框架

WebFlux,简而言之,是一套Spring Team认为未来需要代替Spring MVC体系的web框架,其构建于响应式编程规范之上,提供流式非阻塞具体实现在官网提供的各种资料中,目前我们可以认为Spring MVC和Spring WebFlux是两套平行的架构体系。在Spring Boot2.0.0版本以及后续中,我们通过Spring Initializer引入对应的web模块或者web reactive 模块,即可发现其分别对应着Spring MVC和Spring WebFlux

Integration: remoting, JMS, JCA, JMX, email, tasks, scheduling, cache.

集成:远程调用,JMS,JCA,JMX,电子邮件,任务,调度,缓存。

Languages: Kotlin, Groovy, dynamic languages.

语言:Kotlin,Groovy,动态语言。

SpringOnePlatform 2017 talks(2017年SpringOne Platform会谈)

作为Spring、CloudFoundry、Redis、RabbitMQ等开源技术的拥有者,Pivotal公司每年都会举办一次这样的大会,与全球数千位开发人员、客户和合作伙伴相聚在一起,交流企业数字化转型的最佳实践,探讨云原生应用开发的最新技术。

~Spring Framework 5.0 on JDK 8 & 9
~Servlet or Reactive Stacks: The Choice is Yours. Oh No…​ The Choice is Mine!
~New in Spring Framework 5.0: Functional Web Framework
~Why Spring Loves Kotlin

Spring Framework 5.4可以在JDK8和9上运行。
Servlet或反应式技术栈(Spring 5提供了Servlet和反应式这两种Web技术栈):你来选。不...我来选。
Spring5框架的新东西:功能web框架。
为什么Spring喜欢Kotlin。

Quick start

Bootstrap your application with Spring Initializr.

用Spring Initializr启动应用程序。

你可能感兴趣的:(Spring Framework中文文档)