IntelliJ IDEA怎么热启动springboot项目

我们在利用IntelliJ IDEA开辟springboot项目时 , 每次点窜都需要重启IntelliJ IDEA , 很是的麻烦 , 影响开辟的效率 , 那么IntelliJ IDEA怎么热摆设springboot项目呢 , 下面本文就介绍一下 。

需要这些哦
IntelliJ IDEA , springboot
方式/
1起首 , 需要在springboot项目标pom.xml文件中引入相关的依靠 , maven依靠为:
<depency>    
     <groupId>org.springframework.boot</groupId>    
     <artifactId>spring-boot-devtools</artifactId>    
     <optional>true</optional>
</depency>


和插件撑持:
<build>    
    <plugins>        
         <plugin>            
               <groupId>org.springframework.boot</groupId>            
               <artifactId>spring-boot-maven-plugin</artifactId>            
               <configuration>                
                    <fork>true</fork>            
               </configuration>        
         </plugin>    
    </plugins>
</build>
如图所示 。

IntelliJ IDEA怎么热启动springboot项目

文章插图

2然后点击IntelliJ IDEA左上角的“file” , 如图所示 。

IntelliJ IDEA怎么热启动springboot项目

文章插图

3然后选择下拉菜单中的“settings...” , 进入idea的系统功能设置 , 如图所示 。

IntelliJ IDEA怎么热启动springboot项目

文章插图

4进入IntelliJ IDEA的settings功能之后 , 选择左侧菜单的“Build,Execution,Deployment”,如图所示 。

IntelliJ IDEA怎么热启动springboot项目

文章插图

5然后选择此中的“Compiler”,然后把右面的“Build project automatically”前面的复选框勾选 , 如图所示 。

IntelliJ IDEA怎么热启动springboot项目

文章插图

6然后利用快捷键“Ctrl+Shift+A” , 搜刮“Registry” , 如图所示 。

IntelliJ IDEA怎么热启动springboot项目

文章插图

7然后把如图所示的key进行勾选就可以了 , 如图所示 。

IntelliJ IDEA怎么热启动springboot项目

文章插图

8【IntelliJ IDEA怎么热启动springboot项目】

推荐阅读