找不到spring-boot-devtools maven jar

时间:2018-03-17 14:14:06

标签: spring spring-boot

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

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

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

但是maven没有找到依赖,

我需要添加resolitory uri?

1 个答案:

答案 0 :(得分:2)

如果您没有使用父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以查看您要使用的版本。