您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關如何在IDEA中使用JRebel熱部署插件,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
安裝流程
file-》settings-》Plugins-》Install plugin from disk-》選擇JRebel安裝文件所在的目錄-》Apply
破解
步驟一
關閉Idea,打開破解壓縮包,替換一個licence文件和兩個jar包
1.將本機 C:\Users\你的用戶名\.JRebel\JRebel.lic替換為下載的補丁包里的 JRebel.lic; (如果沒有則直接粘貼進去即可)
2.C:\Users\你的用戶名\.IntelliJIdea2017.1\config\plugins\jr-ide-idea\lib\JRebel6\JRebel.jar
3.C:\Users\你的用戶名\.IntelliJIdea2017.1\config\plugins\jr-ide-idea\lib\JRebel\JRebel.jar
步驟二
啟動idea,在file-》settings-》JRebel 查看激活狀態(tài)
步驟三
設置JRebel,選擇settings -> JRebel -> advanced 選擇Jrebel 6 Agent,然后重啟idea。其他默認配置
配置
1、項目必須使用“war exploded”形式發(fā)布
2、在Run-》Edit Configuration的On frame deactivation以及 On update action:選擇 “update classes and resources”
3、啟動時選擇JRebel插件啟動,調(diào)試運行均可
4、(這一步可以不做)當一個項目使用maven多模塊開發(fā)時通過上面的配置, 只能自動加載webapp所在的模塊, 若想改動其他模塊的代碼也要自動加載, 需在項目的根(父)pom.xml文件中加入下面的配置:
<build> <-- 只需要復制兩個 plugin 標簽及里面的內(nèi)容即可,build 和 plugins 標簽是為了更容易理解兩個 plugin 標簽的放置位置 --> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.8</source> <target>1.8</target> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.zeroturnaround</groupId> <artifactId>jrebel-maven-plugin</artifactId> <version>1.1.5</version> <configuration> <addResourcesDirToRebelXml>true</addResourcesDirToRebelXml> <alwaysGenerate>true</alwaysGenerate> <showGenerated>true</showGenerated> </configuration> <executions> <execution> <id>generate-rebel-xml</id> <phase>process-resources</phase> <goals> <goal>generate</goal> </goals> </execution> </executions> </plugin> </plugins> </build>
關于如何在IDEA中使用JRebel熱部署插件就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。