版本:MyEclipse2017 Stable 2.0java
百度网盘连接:https://pan.baidu.com/s/1vpIMKq9FfMMbhXzkmft_8A 密码:xfbvapache
myeclipse2017 stable 2.0 破解包网盘连接:https://pan.baidu.com/s/1UoIbtIoYjAC_dA4pKtba9Q 密码:e6s8bash
把补丁包里面patch下的全部文件覆盖到你myeclipse安装路径下的plugins目录;网络
断开网络,双击打开crack.bat文件;eclipse
按照下图顺序依次操做:maven
打开myeclipse查看激活状况,如图为激活成功:工具
激活失败缘由分析学习
为了提升maven建立项目的速度,能够更新maven源为阿里云的,配置文件能够在myeclipse里面能够找到:Window => Preferences => 搜索输入“maven”,点击User Settings看到,如图:ui
若是找不到这个文件能够手动建立,更换的配置文件以下:阿里云
<?xml version="1.0" encoding="UTF-8"?>
<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd" xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<!-- 这个是配置阿里Maven镜像 -->
<mirrors>
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
<profiles>
<profile>
<id>jdk-1.8</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>1.8</jdk>
</activation>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
</properties>
</profile>
<profile>
<id>nexus</id>
<repositories>
<repository>
<id>central</id>
<url>http://repo.maven.apache.org/maven2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>ansj-repo</id>
<name>ansj Repository</name>
<url>http://maven.nlpcn.org/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>nexus</activeProfile>
</activeProfiles>
</settings>
复制代码
MyEclipse默认状况下,只有输入“.”的时候才会有代码提示,若是须要输入任何信息都有代码提示的话,须要手动修改配置:
Window => Preferences => Java => Editor => Content Assist 设置Auto activation triggers for Java内容为“.abcdefghijklmnopqrstuvwxyz(,” => 保存退出.
如图:
myeclipse还能够设置保存文件自动格式化代码,这个功能我是很喜欢的,配置完效果以下:
手动配置:
Window => Preferences => Java => Editor => Save Actions => 选中前2项,其中第2项选择第1个选项 => 保存退出.
如图:
Alt+/ 代码提示
Ctrl+O 检索类里面的方法
Ctrl+E 检索切换类视图
Ctrl+/ 代码注释
Ctrl+M 代码窗口最大化
Ctrl+1 显示报错解决方案
Ctrl+Shift+F 格式化代码
F3 查找类/变量定义
F5 调试进入方法中
F6 单步执行
F11 启动调试
maven是java界优秀的项目构建和依赖管理工具,咱们使用maven来简单的建立一个项目,学习一下maven的使用。
关于安装:好的一点是使用myeclipse会帮你把maven插件安装好,若是你使用的是eclipse的话须要本身手动去装。
建立分为3步:
如图所示:
如上所示一个简单的Hello World就完成了。
添加依赖jar包
使用maven就不用苦苦在网上找jar包了,只须要在项目的根目录pom.xml配置以后会自动下载jar包,示例配置以下:
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.1</version>
</dependency>
复制代码
更多使用心得,后续文档更新。