gpt4 book ai didi

找不到 spring-boot-devtools maven jar

转载 作者:行者123 更新时间:2023-12-05 03:06:28 24 4
gpt4 key购买 nike

我需要使用 spring boot devtools 在开发期间强制重新加载静态资源。

我在我的 pom 中添加了以下代码

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
<scope>runtime</scope>
</dependency>

但是maven没有找到依赖,

我需要添加仓库 uri 吗?

最佳答案

如果你没有使用父 pom 也没有定义 <DependencyManagement>在那里,那么您应该确定要使用的 jar 版本。

喜欢:

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<version>1.5.9.RELEASE</version>
<optional>true</optional>
<scope>runtime</scope>
</dependency>

可以查看http://mvnrepository.com/artifact/org.springframework.boot/spring-boot-devtools查看您想使用的版本。

关于找不到 spring-boot-devtools maven jar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49337877/

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