Reputation: 151
I am trying to download spring framework for my java application in this https://projects.spring.io/spring-framework/ site, but the problem is that there is no option for the download.
Can anyone help please.
Upvotes: 15
Views: 65859
Reputation: 105
You need account to log on repo.spring.io https://spring.io/blog/2022/12/14/notice-of-permissions-changes-to-repo-spring-io-january-2023 So to download, go to maven repo and download from there https://mvnrepository.com/artifact/org.springframework/spring-core
Upvotes: 0
Reputation: 125
You can download latest version from here. https://repo.spring.io/ui/native/release/org/springframework/spring/ Then unzip it and add jars from it to your project
Upvotes: -2
Reputation: 25
your question is not correct! because you need a Layer such as Maven or Gradle ! but if you need to spring library . you can download it from this way:
you can use this web site For any framework such as spring: https://jar-download.com/artifacts/org.springframework/spring-core
Upvotes: 1
Reputation: 505
Just download the latest zip version from https://repo.spring.io/release/org/springframework/spring/ .Then unzip it and add jars from it to your project
Upvotes: 9
Reputation: 26
There is already an answer to your question.
But if you are using maven or gradle (Dependency Management tools), you have the snippets needed to use Spring Framework on the site you provided. Just add these to your dependencies:
MAVEN:
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>4.3.2.RELEASE</version>
</dependency>
</dependencies>
GRADLE
dependencies {
compile 'org.springframework:spring-context:4.3.2.RELEASE'
}
Upvotes: 0
Reputation: 282
Select which modules you need and generate an initial project in https://start.spring.io/
Upvotes: 3