Intellij idea 配置热部署

1. 采用外部tomcat的配置

1)打开右上角Run的Edit Configuration进入Tomcat配置选项页面

2)将On frame   deactivation选项更改为 Update classes and resources

2. 采用springboot自带tomcat

1)pom.xml文件

热部署功能spring-boot-1.3开始有的

<!--添加依赖-->
<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中不需要添加此配置。

<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
            <configuration>
                <fork>true</fork>
            </configuration>
        </plugin>
    </plugins>
</build>

2) 更改idea配置

  1) “File” -> “Settings” -> “Build,Execution,Deplyment” -> “Compiler”,选中打勾 “Build project automatically” 。

  2) 组合键:“Shift+Ctrl+Alt+/” ,选择 “Registry” ,选中打勾 “compiler.automake.allow.when.app.running” 。

3) Chrome禁用缓存

  F12或者“Ctrl+Shift+I”,打开开发者工具,“Network” 选项卡下 选中打勾 “Disable Cache(while DevTools is open)”

原文地址:https://www.cnblogs.com/yingsong/p/9216670.html

时间: 2024-11-08 17:08:42

Intellij idea 配置热部署的相关文章

IDEA中Spring boot配置热部署无效问题解决方式(转)

IDEA中Spring boot配置热部署无效问题解决方式 2018年01月31日 20:30:59 阅读数:1426 该配置方式属于通过配置devtools实现热部署 只要在pom文件中添加下面代码段即可 <!-- 热部署 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId>

Intellij IDEA 4种配置热部署的方法

热部署可以使的修改代码后,无须重启服务器,就可以加载更改的代码. 第1种:修改服务器配置,使得IDEA窗口失去焦点时,更新类和资源 菜单Run -> EditConfiguration , 然后配置指定服务器下,右侧server标签下on frame deactivation = Update classes and resource. 优点:简单 缺点:基于JVM提供的热加载仅支持方法块内代码修改,只有debug模式下,并且是在idea失去焦点时才会出发热加载,相对加载速度缓慢 第2种:使用s

eclipse开发配置热部署jrebel

下载jrebel.我提供了一个在百度网盘,链接:http://pan.baidu.com/s/1c0ztkYk 密码:brfi, 解压即可使用.本人放在D盘根目录. eclipse安装jrebel插件.我直接采用在线安装.安装过程:eclipse --> help --> eclipse marketplace --> find中输入jrebel搜索,选中install即可.安装完重启eclipse 配置jrebel.重启完毕后,开始设置 JRebel参数,进入 Eclipse后选择 W

IDEA中Spring boot配置热部署

pom文件中添加 1 <!-- 热部署 --> 2 <dependency> 3 <groupId>org.springframework.boot</groupId> 4 <artifactId>spring-boot-devtools</artifactId> 5 <optional>true</optional> 6 <scope>true</scope> 7 </depen

idea配置热部署

第一步:添加依赖使用spring-boot-devtools提供的开发者工具spring-boot项目中引入如下依赖 <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-devtools</artifactId></dependency>该方法基于类加载机制来实现热加载的,因此你修改完成代码后必须重新编译当前代码,才能触发热部署,

IntelliJ+Tomcat的热部署

配置intelliJ 项目 的 artifact 启动tomcat 修改代码或页面时按shift+F9,点击update classes and resources则可,秒同步 之前一直搞jrebel和dcevm什么的,其实tomcat的这个hot swap非常好用,只是不支持增删方法或方法名的修改.

Intellij IDEA安装热部署插件JRebel

注:笔者使用版本为IntelliJ IDEA 2019.3.2 (Ultimate Edition) IDEA安装JRebel1.在IDEA中点击 File->Settings->Plugins->Brows Repositories:2.在搜索框搜索JRebel:3.找到JRebel for intellij:4.install:5.安装好之后restart IDEA: IDEA激活JRebel(首先到github上去下载一个反向代理软件,下载地址,64位下载后打开) 1.在IDEA中

freemarker热部署(Intellij Idea)

IntelliJ + springmvc + freemarker 开发环境 缓存设置 2015-05-26 13:31 通过阅读源码搞定了 先设置springmvc的缓存控制.这是最高优先级的缓存控制.一旦springmvc发现没有缓存开启,就会进行cache,如果发现缓存没开启,则会每次生成一个view(通过调用freemarker的方法来进行). 再设置freemakre的缓存控制.freemakre通过一个时间长度来控制缓存 在上面两步完成之后,一般来说就可以了.但是还有一个问题是,we

【IDEA 2016】intellij idea tomcat jsp 热部署

刚开始用IDEA,落伍的我,只是觉得IDEA好看.可以换界面.想法如此的low. 真是不太会用啊,弄好了tomcat.程序启动竟然改动一下就要重启,JSP页面也一样. IDEA可以配置热部署,打开tomcat配置页面,将红框处,选择一样即可. 如果你的配置没有这两项,看第三个图,将项目选择ex....就有了.别问为什么,我也不知道.