SpringBootプロジェクトはIntelliJ IDEAでホットな導入を実現
7624 ワード
原文転自 http://blog.csdn.net/my_chen_suo_zhang/article/details/69396808
一、idea自動make機能を開く
1、CTRL+SHIFT+A-->makeプロジェクトの検索automatically-->選択
2、CTRL+SHIFT+A-->Registry-->compiler.automake.allow.when.app.running
最後にideaを再起動
二、spring-boot-1.3を使用して始めたホット配置機能 1、加maven依存
2、ホット配置を開く
三、Chromeキャッシュ無効 F 12(またはCtrl+Shift+JまたはCtrl+Shift+I)-->NetWork-->Disable Cache(while DevTools is open)
これでideaでコードを快適に修正でき、修正後すぐに効果が現れ、ブラウザキャッシュを手動で再起動したりクリアしたりする必要がなくなります.
一、idea自動make機能を開く
1、CTRL+SHIFT+A-->makeプロジェクトの検索automatically-->選択
2、CTRL+SHIFT+A-->Registry-->compiler.automake.allow.when.app.running
最後にideaを再起動
二、spring-boot-1.3を使用して始めたホット配置機能 1、加maven依存
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
2、ホット配置を開く
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork>
</configuration>
</plugin>
</plugins>
</build>
三、Chromeキャッシュ無効 F 12(またはCtrl+Shift+JまたはCtrl+Shift+I)-->NetWork-->Disable Cache(while DevTools is open)
これでideaでコードを快適に修正でき、修正後すぐに効果が現れ、ブラウザキャッシュを手動で再起動したりクリアしたりする必要がなくなります.