在实际SpringBoot项目开发中,如果你想修改而又不想重新启动项目,那么就可以使用热部署
例如在死啃SpringBoot(一)中启动项目
访问 http://localhost:8080/hello
此时修改代码
刷新 http://localhost:8080/hello
没有效果
热部署
复制如下代码到pom.xml中
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
注意dependencies同名而引起报错,若pom.xml中已有dependencies 把下面代码复制到 dependencies 中
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
启动SpringBoot
修改 TestController
package cn.awz;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class TestController {
@GetMapping("hello")
public String hello() {
return "hello SpringBoot 修改";
}
}
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/133866.html