intellij idea中springboot的热部署

  之前有写过intellij idea中spring mvc的热部署,相当简单,只需要点击debug小虫按钮,在弹窗中选择update classes and resources即可。
  但是,springboot集成了tomcat,与spring mvc相比有诸多不同,小虫按钮中的update classes and resources也不见了。具体操作如下:

1、pom.xml配置:

<dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-devtoolsartifactId>
            <version>1.5.1.RELEASEversion>
dependency>
<plugin>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-maven-pluginartifactId>
            <configuration>
                
                <fork>truefork>
            configuration>
plugin>

2、 Chrome禁用缓存
intellij idea中springboot的热部署_第1张图片
3、CTRL+F9

参考:https://www.cnblogs.com/winner-0715/p/6666579.html

你可能感兴趣的:(Java,开发工具)