gpt4 book ai didi

java - 无法在项目中添加 spring-jdbc 4.3.7

转载 作者:行者123 更新时间:2023-11-30 06:30:46 25 4
gpt4 key购买 nike

我尝试使用 Spring 4.3.7.RELEASE 依赖项创建项目。一切正常,直到我尝试添加 spring-jdbc 依赖项。执行此操作后,我遇到了一个奇怪的错误:

Archive for required library: '.../.m2/repository/org/springframework/spring-tx/4.3.7.RELEASE/spring-tx-4.3.7.RELEASE.jar' in project cannot be read or is not a valid ZIP file. 

如果我尝试使用不同的 spring 版本,我会得到另一个依赖项的错误。

如果仅在 4.3.11.RELEASE 中工作正常。为什么会发生这种情况?

我的pom.xml:

    <properties>
<spring.version>4.3.7.RELEASE</spring.version>
<java.version>1.8</java.version>
</properties>

<dependencies>

<!-- Spring -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
<version>${spring.version}</version>
</dependency>

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>${spring.version}</version>
</dependency>

</dependencies>

<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>

最佳答案

感谢大家,特别是 paulnuk。问题确实出在有错误的文件中。但显然原因是在 spring-tx 中。

我尝试删除它并重新下载:

[INFO] Downloading: https://repo.maven.apache.org/maven2/org/springframework/spring-tx/4.3.7.RELEASE/spring-tx-4.3.7.RELEASE.jar
[INFO] Downloaded: https://repo.maven.apache.org/maven2/org/springframework/spring-tx/4.3.7.RELEASE/spring-tx-4.3.7.RELEASE.jar (261 KB at 1207.7 KB/sec)

它解决了我的问题。

关于java - 无法在项目中添加 spring-jdbc 4.3.7,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46197520/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com