2. install plugin from disk
4. 激活插件 Help --> JRebel --> Activity.输入第三步中获得的激活码
5. 选中要热部署的工程View -->Tool Windows -->JRebel -->选中当前工程
6. 用 meavn 插件生成rebel.xml. pom.xml 文件中这样配置.进入工程所在的目录执行 mvn jrebel:generate 生成 rebel.xml 就可以快乐使用热部署了.
<build>
<finalName>seckill</finalName>
<plugins>
<plugin>
<groupId>org.zeroturnaround</groupId>
<artifactId>jrebel-maven-plugin</artifactId>
<version>1.1.7</version>
<executions>
<execution>
<id>generate-rebel-xml</id>
<phase>process-resources</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>