我在哪里可以获得spring framework 3.0发行版?

时间:2009-09-25 01:07:43

标签: spring download

有没有人能够从spring源站点下载spring framework 3.0.0.M4 ...(或者你能提供另一个下载页面)吗?

http://www.springsource.org/download

我错过了什么......,该网站给了我一个解决方法......

当我进入“Spring社区下载”页面并从LHS菜单中选择spring时...我没有下载链接...

6 个答案:

答案 0 :(得分:1)

如果您使用的是maven,请将其添加到pom.xml中的<repositories>

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

并像这样声明你的春天依赖:

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

对于其他艺人,请使用Spring Maven artifact URL进行浏览。

有关Spring article中的maven资源库的更多信息。

答案 1 :(得分:1)

存储库答案可能是最好的答案,但如果您想自己构建它,请执行以下步骤。

http://blog.springsource.com/2009/03/03/building-spring-3/

答案 2 :(得分:1)

http://blog.springsource.com/2009/12/02/obtaining-spring-3-artifacts-with-maven/

根据您的需要,您可以使用maven central或spring EBR。上面的链接比较了存储库,还解释了如何获得里程碑,发布以及springframework的快照。

答案 3 :(得分: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

答案 4 :(得分:1)

步骤:

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

  2. 当您点击网址时,您的jar文件下载会自动启动

  3. 解压缩后,有一个名为dist的文件夹,其中包含以下用于spring 3.0.5的jar文件

    • 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
  4. 注意:您可以通过将发布版本修改为 3.0.1 3.2.5 (任何版本)来下载任何版本的spring framwork其他版本根据您的需要)在上面提到的URL中

答案 5 :(得分:0)

我建议使用Maven之类的构建系统。如果您想了解更多信息,可以阅读here

然后在您的pom.xml中添加以下坐标:

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

您可以在MVN Repository处查看Spring Framework的所有版本(现在称为Spring Core)