Intellij idea 配置熱部署

1. 採用外部tomcat的配置spring

1)打開右上角Run的Edit Configuration進入Tomcat配置選項頁面緩存

2)將On frame   deactivation選項更改成 Update classes and resourcestomcat

 

2. 採用springboot自帶tomcatspringboot

1)pom.xml文件app

熱部署功能spring-boot-1.3開始有的eclipse

<!--添加依賴-->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-devtools</artifactId>
    <!-- optional=true,依賴不會傳遞,該項目依賴devtools;以後依賴myboot項目的項目若是想要使用devtools,須要從新引入 -->
    <optional>true</optional>
</dependency>

:project 中添加 spring-boot-maven-plugin,主要在eclipse中使用,idea中不須要添加此配置。maven

<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
            <configuration>
                 <fork>true</fork>
          <!-- 靜態資源 -->
          <addResources>true</addResources>
</configuration> </plugin> </plugins> </build>

2) 更改idea配置ide

  1) 「File」 -> 「Settings」 -> 「Build,Execution,Deplyment」 -> 「Compiler」,選中打勾 「Build project automatically」 。spring-boot

  2) 組合鍵:「Shift+Ctrl+Alt+/」 ,選擇 「Registry」 ,選中打勾 「compiler.automake.allow.when.app.running」 。工具

       3) 從新rebuild項目

3) Chrome禁用緩存

  F12或者「Ctrl+Shift+I」,打開開發者工具,「Network」 選項卡下 選中打勾 「Disable Cache(while DevTools is open)」

相關文章
相關標籤/搜索