Springboot修改页面之后,需要重启eclipse问题处理(热部署)

出现Springboot修改页面之后,需要重启eclipse这样子的情况是需要添加


        org.springframework.boot
        spring-boot-devtools
        true
    

在Maven中添加 如上配置
true 热部署状态为true
在eclipse中修改了templats中的页面,项目会自动加载。不需要再次运行

如果还不能做到,在做如下步骤:
project -> build automattically 勾选上
(原因是clean project之后,项目build方式改变)

你可能感兴趣的:(部署类)