Eclipse SpringBoot项目配置热部署

pom添加依赖

        
            org.springframework.boot
            spring-boot-devtools
            true
        

properties配置文件添加:

spring.thymeleaf.cache=false
spring.devtools.restart.enabled=false   

这时修改java类,点击保存 项目可能会自动重启 ,修改启动类禁止重启:

public static void main(String[] args) {
        System.setProperty("spring.devtools.restart.enabled", "false");
        SpringApplication.run(CskxApplication.class, args);
    }

你可能感兴趣的:(踩过的坑,eclipse,spring,boot)