gpt4 book ai didi

java - 如何更新 Intellij 提供的默认 Spring 版本?

转载 作者:行者123 更新时间:2023-11-30 10:56:59 24 4
gpt4 key购买 nike

当我在 IntelliJ IDEA 中创建一个 Spring 项目时,它建议我使用 Spring 4.1.6。我想使用 4.2.1(我可以在创建项目后使用)。

enter image description here

我可以在哪里进行更改?

谢谢,安迪

最佳答案

我不知道您是否可以在不升级的情况下自行更改它,但您可以允许它使用该版本创建它,然后手动将其更改为您的 pom.xml 文件。

例如,

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

您还可以提供一个可用于所有 Spring 依赖项的属性,然后您只需更改一个地方。

例如,

<properties>
<org.springframework.version>4.2.0.RELEASE</org.springframework.version>
...
</properties>

然后像...一样使用它

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

关于java - 如何更新 Intellij 提供的默认 Spring 版本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32811529/

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