'Spring Jars to download
I am using below link for downloading spring jars. http://repo.spring.io/release/org/springframework/spring/4.1.4.RELEASE/
I am confused with so many links. Which link should i use to download the jar? I am using a Windows machine and create a project directly through New Java Project.
Solution 1:[1]
Please refer this url http://repo.spring.io/release/org/springframework/spring/ and Choose the which version Spring Jars you want.
Choose the spring-framework-X.X.X.RELEASE-dist.zip
Solution 2:[2]
You should be using this link to download spring jars. Other links in there are for checksum or documentation.
Solution 3:[3]
Important points to understand in all the spring related repo is that it contains 3 zip files .
- spring-framework-{version}-dist.zip : contains all the spring related jars.
- spring-framework-{verison}-docs.zip : contains all the standard documents in HTML format for spring and related java api documents. It is similar to Oracle API Documentation. **Note : Inside all the folders you will find and index.html file. U can consume it typing the folder path till index.html in web browser.
- spring-framework-{version}-schema.zip*: contains all the spring modules based standard xsd for xml based spring development.
Solution 4:[4]
I hit the same issue and I followed Brian Clozel advice above.
- Create a new Maven project in eclipse.
Edit the pom.xml and add the Spring dependencies as follows -
org.springframework spring-core 5.0.6.RELEASE
When you build the project in eclipse,it hits the maven repo and downloads the requisite spring jars for you. The indirect dependencies should also be downloaded automatically.
Hope this helps.
Solution 5:[5]
Step 1) Place this URL in browser
https://repo.spring.io/ui/native/release/org/springframework/spring/
Step 2) Scroll down & select latest version. Example : 5.3.9/
Step 3) Click on the file similar to "spring-5.3.9-dist.zip" to download
Step 4) Hence JAR files of latest spring is downloaded in zip format.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Lova Chittumuri |
Solution 2 | SMA |
Solution 3 | cryptonkid |
Solution 4 | AbhijitG |
Solution 5 | Ankit |