请编辑以使此镜像列表保持最新
我找到了这个maven
仓库,您可以在其中直接从zip
包含所需罐子的文件中下载文件。
替代解决方案:Maven
我更喜欢使用的解决方案Maven
,这很容易,您不必jar
单独下载每个解决方案。您可以按照以下步骤操作:
例如,使用任何您喜欢的名称在任何地方创建一个空文件夹 spring-source
创建一个名为 pom.xml
将下面的xml复制到该文件中
spring-source
在控制台中打开文件夹
跑 mvn install
下载完成后,您会在其中找到弹簧罐 /spring-source/target/dependencies
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>spring-source-download</groupId>
<artifactId>SpringDependencies</artifactId>
<version>1.0</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>3.2.4.RELEASE</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.8</version>
<executions>
<execution>
<id>download-dependencies</id>
<phase>generate-resources</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/dependencies</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
另外,如果您需要下载其他任何Spring项目,只需dependency
从相应的网页复制配置即可。
例如,如果要下载Spring Web Flow
jar,请转至其网页,然后将其dependency
配置添加到中pom.xml
dependencies
,然后mvn install
再次运行。
<dependency>
<groupId>org.springframework.webflow</groupId>
<artifactId>spring-webflow</artifactId>
<version>2.3.2.RELEASE</version>
</dependency>