IntelliJ IDEA怎么热启动springboot项目

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

工具/原料

  • IntelliJ IDEA,springboot

方式/步骤

  1. 1

    首先,需要在springboot项目标pom.xml文件中引入相关的依靠,maven依靠为:

    <dependency>    

         <groupId>org.springframework.boot</groupId>    

         <artifactId>spring-boot-devtools</artifactId>    

         <optional>true</optional>

    </dependency>


    和插件撑持:

    <build>    

        <plugins>        

             <plugin>            

                   <groupId>org.springframework.boot</groupId>            

                   <artifactId>spring-boot-maven-plugin</artifactId>            

                   <configuration>                

                        <fork>true</fork>            

                   </configuration>        

             </plugin>    

        </plugins>

    </build>

    如图所示。

  2. 2

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

  3. 3

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

  4. 4

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

  5. 5

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

  6. 6

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

  7. 7

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

  8. 8

    然后需要重启IntelliJ IDEA,不然可能不生效,以上就是IntelliJ IDEA怎么热启动springboot项目标方式介绍,但愿可以帮到大师。

  • 发表于 2019-07-30 00:48
  • 阅读 ( 196 )
  • 分类:其他类型

相关问题

0 条评论

请先 登录 后评论