如何在Eclipse中使用SpringBoot 2.2.7.RELEASE(约2020年)启用hotswap?

问题描述 投票:0回答:1

谷歌在这个问题上不配合......大部分点击率至少5年以上,或者使用Tomcat。

如何用SpringBoot 2.2.7.RELEASE(这是几天前的最新版本,但如果需要,我可以升级到2.3.0-RELEASE)在Eclipse中启用代码hotswap?

spring-boot eclipse-plugin
1个回答
0
投票

显然,这就是所有需要的东西。

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-devtools</artifactId>
    <optional>true</optional>
</dependency>
© www.soinside.com 2019 - 2024. All rights reserved.