IDEA日常使用

IDEA快捷键

1.光标回到上次查看位置 : CTRL+Alt+"向右箭头"

IDEA概念

1.project相当于myeclipse workspace的概念
2.module相当于myeclipse project的概念
3.使用中对于一个项目里面要新建多个工程,这需要新建一个project,然后在此project中新建多个不同的module,如爬虫系统有多个工程(OperationService, TaskService, ParseService),这需要新建一个project CRAWLER作为workspace,然后建立多个module,分别为OperationService, TaskService, ParseService

IDEA使用Git集成GitLab项目

1.生成公钥和私钥(百度)
2.登录GitLab,点击"Profile Settings",如图所示:

IDEA日常使用_第1张图片
Paste_Image.png

3.点击左侧"SSH Keys",点击"ADD SSH KEY",如图所示:

IDEA日常使用_第2张图片
Paste_Image.png

4.添加私钥到key中,在Title中随意填写描述,点击ADD Key,如图所示:

IDEA日常使用_第3张图片
Paste_Image.png

5.在GitLab中新建project,如图所示;

IDEA日常使用_第4张图片
Paste_Image.png

6.在IDEA中check out GitLab中的project,点击IDEA的菜单栏中的VCS->Checkout from Version Control->Git,出现如下弹出框:

IDEA日常使用_第5张图片
Paste_Image.png

7.输入在IDEA中建立的project的URL,点击"Clone",项目下载到本地
8.Git提交分为本地提交和远程提交,本地提交有git add和git commit两个概念,当执行git commit时文件被提交到本地仓库,当执行git push时本地仓库被同步到远程仓库,为什么提交到本地仓库需要git add和git commit两个操作,git add操作表示文件修改被提交到暂存区,git commit表示文件修改的所有内容提交到当前分支

IDEA日常使用_第6张图片
Paste_Image.png

IDEA Maven打包Hadoop程序

1.pom.xml文件需要引入以下插件


org.apache.maven.plugins
maven-assembly-plugin


jar-with-dependencies



2.打开IDEA的Maven projects视图,点击IDEA菜单栏VIEW->Tool Windows->Maven Projects,如图所示

IDEA日常使用_第7张图片
Paste_Image.png

3.打开Maven Projects,打开Plugins->assembly,右键点击"assembly:assembly",点击"Run Maven Build",如图所示:

IDEA日常使用_第8张图片
Paste_Image.png

4.在项目的target目录下生成Jar包,如图所示:

IDEA日常使用_第9张图片
Paste_Image.png

你可能感兴趣的:(IDEA日常使用)