【发布时间】:2021-03-29 01:03:24
【问题描述】:
这是我的 pom 文件。 我第一次尝试使用 spring boot 2.4.1 版本,效果很好。现在我无法使用 2.4.0。是不是因为系统已经安装了2.4.1,不让我使用低版本? (因为 2.4.1 以上的任何版本都没有给我任何错误)
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.0</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
【问题讨论】:
-
是不是不允许我使用低版本 没有。 maven 不会检查存储库中是否有更新的版本。
标签: java spring spring-boot intellij-idea