Spring5-Springの紹介

バネ

公式ウェブサイトアドレス:https://spring.io/projects/spring-framework#overview

公式ダウンロードアドレス:http://repo.spring.io/release/org/springframework/spring

ここに画像の説明を挿入

GitHubアドレス:https://github.com/spring-projects/spring-framework

春の中国のドキュメント: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>

アドバンテージ

  • 春はオープンソースの無料フレームワークです
  • 春は軽量で邪魔になりません
  • 制御の反転(IOC)、アスペクト指向プログラミング(AOP)
  • トランザクション処理のサポート、フレームワーク統合のサポート

要約する

Springは、軽量の制御の反転(IOC)およびアスペクト指向プログラミング(AOP)フレームワークです。

おすすめ

転載: blog.csdn.net/Silly011/article/details/123879637