Spring5-Spring简介

Spring

官网地址:https://spring.io/projects/spring-framework#overview

官方下载地址:http://repo.spring.io/release/org/springframework/spring

在这里插入图片描述

GitHub地址:https://github.com/spring-projects/spring-framework

Spring中文文档:https://www.docs4dev.com/docs/zh/spring-framework/5.1.3.RELEASE/reference/

maven仓库下载地址:https://mvnrepository.com/tags/spring

在这里插入图片描述

<!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-webmvc</artifactId>
    <version>5.3.17</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.springframework/spring-jdbc -->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-jdbc</artifactId>
    <version>5.3.17</version>
</dependency>

优点

  • spring是一个开源的免费的框架
  • Spring是一个轻量级的,非入侵式的
  • 控制反转(IOC),面向切面编程(AOP)
  • 支持事务的处理,对框架整合的支持

总结

Spring 就是一个轻量级的控制反转(IOC)和面向切面编程的(AOP)的框架

猜你喜欢

转载自blog.csdn.net/Silly011/article/details/123879637