Introduction to Spring5-Spring

Spring

Official website address: https://spring.io/projects/spring-framework#overview

Official download address: http://repo.spring.io/release/org/springframework/spring

insert image description here

GitHub address: https://github.com/spring-projects/spring-framework

Spring Chinese documentation: https://www.docs4dev.com/docs/zh/spring-framework/5.1.3.RELEASE/reference/

Maven repository download address: https://mvnrepository.com/tags/spring

insert image description here

<!-- 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>

advantage

  • spring is an open source free framework
  • Spring is a lightweight, non-intrusive
  • Inversion of Control (IOC), Aspect Oriented Programming (AOP)
  • Support transaction processing, support for framework integration

Summarize

Spring is a lightweight Inversion of Control (IOC) and Aspect Oriented Programming (AOP) framework

Guess you like

Origin blog.csdn.net/Silly011/article/details/123879637