Where can I get the spring framework 3.0 distribution?

Has anyone been able to download spring framework version 3.0.0.M4 from the spring source site (or can you provide an alternative download page)?

http://www.springsource.org/download

I'm missing something ... the site gives me a workaround ...

when I go to the "Spring Community Download" page and select spring from the LHS menu ... I do not get the download link ...

ta in advance ...

+3
source share
5 answers

If you are using maven, add this <repositories>to your pom.xml:

<repository>
  <id>spring-milestone</id>
  <name>Spring Portfolio Milestone Repository</name>
  <url>http://s3.amazonaws.com/maven.springframework.org/milestone</url>
</repository>

and declare your spring dependency as follows:

<dependency>
  <groupId>org.springframework</groupId>
  <artifactId>spring-core</artifactId>
  <packaging>jar</packaging>
  <version>3.0.0.M4</version>
</dependency>

Spring URL Maven .

spring maven .

+1
+1

, Spring , , , , :

    import org.springframework.stereotype.Controller;
    import org.springframework.ui.Model;


Some Jars that might be needed are:
org.springframework.aop-3.0.2.RELEASE.jar
org.springframework.asm-3.0.2.RELEASE.jar
org.springframework.beans-3.0.2.jar
...and over 20 more, where does one download these?

searching individually, here is one location:

http://grepcode.com/snapshot/repository.springsource.com/org.springframework/org.springframework.beans/3.0.2

, , , : http://ebr.springsource.com/repository/app/library/version/detail?name=org.springframework.spring&version=3.2.3.RELEASE&searchType=librariesBySymbolicName&searchQuery=org.springframework

+1

:

  • http://s3.amazonaws.com/dist.springframework.org/release/SPR/spring-framework-3.0.5.RELEASE.zip

  • URL-, jar

  • dist, jar spring 3.0.5

    • org.springframework.aop-3.0.5.RELEASE.jar
    • org.springframework.asm-3.0.5.RELEASE.jar
    • org.springframework.aspects-3.0.5.RELEASE.jar
    • org.springframework.beans-3.0.5.RELEASE.jar
    • org.springframework.context.support-3.0.5.RELEASE.jar
    • org.springframework.context-3.0.5.RELEASE.jar
    • org.springframework.core-3.0.5.RELEASE.jar
    • org.springframework.expression-3.0.5.RELEASE.jar
    • org.springframework.instrument.tomcat, 3.0.5.RELEASE.jar
    • org.springframework.instrument-3.0.5.RELEASE.jar
    • org.springframework.jdbc-3.0.5.RELEASE.jar
    • org.springframework.jms-3.0.5.RELEASE.jar
    • org.springframework.orm-3.0.5.RELEASE.jar
    • org.springframework.oxm-3.0.5.RELEASE.jar
    • org.springframework.test-3.0.5.RELEASE.jar
    • org.springframework.transaction-3.0.5.RELEASE.jar
    • org.springframework.web.portlet-3.0.5.RELEASE.jar
    • org.springframework.web.servlet-3.0.5.RELEASE.jar
    • org.springframework.web.struts-3.0.5.RELEASE.jar
    • org.springframework.web-3.0.5.RELEASE.jar

NOTE . You can download any version of the spring framework by simply changing the release version to 3.0.1 or 3.2.5 (any other versions according to your needs) in the above URL

+1
source

Source: https://habr.com/ru/post/1718512/


All Articles