Intellij IDEA 使用学习

Intellij中名词解释:

Project,就是一个完整的项目,类似Eclipse中的WorkSet(虽然WorkSet是人为归类的)。

Module,是Project中的模块,类似Eclipse中的Project。

Facet,据说Eclipse中也有,官方解释是代表了一个Module中使用的技术、框架和语言。它可以让Intellij知道怎么对待这些内容。

Artifact,在Intellij中有两种相关的意思。第一种,代表了你对Project 如何生成Ouput的配置;第二种,是根据相关配置生成的实际Output。

简单的说,它就是一种打包方式的设定,或者某种设定下的打包结果。打包:jar、war等。
An artifact may be a Web application archive (WAR) or an enterprise archive (EAR), packaged or exploded.
In that case, the artifact will normally include Web or Java EE Application facet resources such as deployment descriptors. Other artifact formats are also available.

快捷键大全

我的常用快捷键:

Alt + 1  显示Project
Alt + 7  显示Structure
Ctrl + F12  就是Eclipse的Ctrl + o,显示当前类的所有成员;作用同Alt + 7类似

F2  查找错误,可以一路按下去 Alt + Enter  自动导入等    Ctrl + w  选中变量(单词?)


奇怪,忘了本来要写什么,绝对不是写Intellij的使用学习。。。囧

原文地址:https://www.cnblogs.com/larryzeal/p/5507734.html