我正在尝试在这个https://projects.spring.io/spring-framework/站点下载我的java应用程序的spring框架,但问题是没有下载选项。
任何人都可以帮忙。
答案 0 :(得分:8)
只需从https://repo.spring.io/release/org/springframework/spring/下载最新的zip版本。然后解压缩并将其中的jar添加到您的项目中
答案 1 :(得分:2)
选择您需要的模块并在https://start.spring.io/
中生成初始项目答案 2 :(得分:1)
您可以将该网站用于任何框架,例如spring: https://jar-download.com/artifacts/org.springframework/spring-core
答案 3 :(得分:0)
您的问题已经有answer。
但是,如果您使用maven或gradle(依赖关系管理工具),则需要在您提供的站点上使用Spring Framework所需的片段。只需将这些添加到您的依赖项:
<强> MAVEN:强>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>4.3.2.RELEASE</version>
</dependency>
</dependencies>
<强>摇篮强>
dependencies {
compile 'org.springframework:spring-context:4.3.2.RELEASE'
}