Dan
Dan

Reputation: 2174

unable to Download Spring Framework jar files

From last half and hour , i was trying to download spring framework library but still could not. I am following this this tutorial(click here) , so as they are saying i could not found any jars for which author is representing. Looks like Spring site has been updated. I am very confused. Please help me how to download the jars as shown in the video from the spring website?

Though, i downloaded by following Spring Home >> this zip ,but after unzipping it ,it does not contain any jars. I am confused right now because spring site has been newly updated.

I would like to get the files as shown in this image enter image description here

Upvotes: 3

Views: 6272

Answers (1)

Ralph
Ralph

Reputation: 120881

The new Spring Site can be found at https://spring.io/

But the best way to download the compiled jar, is to download them from the maven repository.

Grab the maven groupId, artefactId, and version from the project page (The Spring core libs can be found on subpage Projects / Spring Framework (in the middle of the first row))

Currently it is

 <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-core</artifactId>
    <version>3.2.5.RELEASE</version>
</dependency>

The go to the maven repository

enter groupId and artefactId, and download the jar artifact.


( http://search.maven.org/#artifactdetails|org.springframework|spring-context|3.2.5.RELEASE|jar )

Upvotes: 3

Related Questions