版本: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>
複製代碼
更多使用心得,後續文檔更新。