SpringBoot热部署

SpringBoot热部署:修改了代码后可以不用重新运行就能生效:


1. 在下添加一个dependency:

........

    

        org.springframework.boot

        spring-boot-devtools

        true

        true

    

....


2.在build模块中添加配置:

   

        

            org.springframework.boot

            spring-boot-maven-plugin

           

            

                true

            

        

   

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