0

我的项目包含很多库,我想更新以下内容:

spring 从 5.0.10.RELASE 到 5.3.18 或更高版本 spring-content spring-core spring-beans spring-aop spring-context-support spring-orm spring-jdb spring-web spring-webmvc spring-tx


spring-data-jpa 从 2.3.2 或更高版本 spring-data-commons 从 2.3.2 或更高版本

但是当我更改版本时,我的项目在开始时有很多错误。我如何检查这些版本库是否与其他版本兼容(hibernate、log4j 等)

4

1 回答 1

0

删除 pom 中 spring 的所有版本标签并创建一个依赖管理,如下所示:

<dependencyManagement>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring</artifactId>
        <version>5.2.9.RELEASE</version>
        <type>pom</type>
    </dependency>
</dependencyManagement>
于 2020-09-23T16:14:43.730 回答