码迷,mamicode.com
首页 > 其他好文 > 详细

IntelliJ IDEA配置总结

时间:2018-02-05 10:42:47      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:自动编译   over   运行   实现   目的   编译   服务   免费   log   

快捷键设置

一次性导包 (ALT + ENTER):

File->Settings...->Editor->General->Auto Import
勾选
Optimize imports on the fly
Add unambiguous imports on the fly

快速书写System.out.println (输入sout + TAB键)
快速书写main方法 (输入psvm + TAB键)
重写方法 (control + o)
查看类、方法详情 (control + q)

其他设置

@Override报错:

Feil->Project Structure...->Modules->
Sources->Language level->6-@Override in interfaces

不能运行java程序:

可能是没有选择运行环境
点击 edit Configurations
在Use classpath of module 中选择本项目的运行环境

Intellij IDEA 4种配置热部署的方法:
热部署可以使的修改代码后,无须重启服务器,就可以加载更改的代码。

第1种:修改服务器配置,使得IDEA窗口失去焦点时,更新类和资源

菜单Run -> EditConfiguration , 然后配置指定服务器下,右侧server标签下on frame deactivation = Update classes and resource。

优点:简单

缺点:基于JVM提供的热加载仅支持方法块内代码修改,只有debug模式下,并且是在idea失去焦点时才会出发热加载,相对加载速度缓慢

第2种:使用springloaded jar包

a. 下载jar包,github:https://github.com/spring-projects/spring-loaded
b. 启动应用时添加VM启动参数:-javaagent:/home/lkqm/.m2/repository/org/springframework/springloaded/1.2.7.RELEASE/springloaded-1.2.7.RELEASE.jar -noverify

优点:对Spring系列框架支持好(不含Spring boot), 支持 成员级别的修改(增删改方法、字段、注解),支持对枚举值集。

缺点:与优点相对

第3种:使用spring-boot-devtools提供的开发者工具

spring-boot项目中引入如下依赖

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
</dependency>
优点:简单,支持Spring-boot项目,支持成员级别的修改热部署。

缺点:只支持spring-boot项目。

第4种:使用Jrebel插件实现热部署(该插件14天免费试用)

在线安装:菜单File -> Setting -> Plugin, 点击右侧底部 Browse repositories, 弹出框顶部输入:JReble for Intellij, 选中安装即可。

优点:强大,对各类框架支持,并且提供IDE插件的方式。


/**
* 使用intelliJ idea 不会默认重新编译当前代码
*/
最后3种方法是基于类加载机制来实现热加载的,因此你修改完成代码后必须重新编译当前代码,才能触发热部署。
Eclipse默认就支持了自动编译,而在Intellij IDEA中默认是关闭了自动编译的,可以按照如下2步设置开启:

/**
*Intellij IDEA 开启自动编译
*/
1.IDEA开启项目自动编译,进入设置,Build,Execut, Deployment -> Compiler 勾选中左侧的Build Project automatically
2.IDEA开启项目运行时自动make, ctrl + shift + a搜索命令:registry -> 勾选compiler.automake.allow.when.app.running
出现问题:修改后重新加载之后,不能访问
解决方法(不知道是否正确)在Compiler中全部勾选,最好是用Debug运行项目

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

IntelliJ IDEA配置总结

标签:自动编译   over   运行   实现   目的   编译   服务   免费   log   

原文地址:https://www.cnblogs.com/chensheng0617/p/8416297.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!