初学springboot热部署出现的问题之spring-boot-devtoos热部署

springboot添加方法或者添加class类可以使用的热部署


之前配置spring-boot-loader 热部署的runAs的参数可以取消掉去了,启动方式直接运行main就行
注意 :如果设置SpringApplication.setRegisterShutdownHook(false),则自动重启将不起作用

    首先需要映入 jar包 
     
        
            org.springframework.boot
            spring-boot-devtools
            true
            true
        
然后需要添加build的插件
  
        
            
                org.springframework.boot
                spring-boot-maven-plugin
                
                    
                    true
                
            
        
    

你可能感兴趣的:(初学springboot热部署出现的问题之spring-boot-devtoos热部署)