1. 程式人生 > >maven專案debug檢視依賴包原始碼辦法

maven專案debug檢視依賴包原始碼辦法

預設的maven工程,好像很難載入依賴的原始碼


辦法如下:
maven除錯時,無法進入原始碼
辦法一,在debug配置裡面,找到source,把帶source的jar包,放進去,新增的時候,選add,再選external archive。這裡要注意,加了後,要重啟debug要不然,還是不行
辦法二,開啟build path,在libraries裡面,找到相關的jar,然後雙擊source attachment,把source關聯照過來
最後一個辦法,也是最有用的辦法
二。安裝下面的外掛,然後做程式碼關聯

m2e.sourcelookup


Eclipse Plugin that provides Maven Dependencies as Source Container in JDT Launching Configuration.
Update site (P2 Repo): https://bjmi.github.io/update-site/


Note: Ensure artifact sources are present in local maven repository or enable Window > Preferences > Maven > Download Artifact Sources in Eclipse
http://ifedorenko.github.com/m2e-extras/


不清楚的可以看下面
http://stackoverflow.com/questions/12598261/maven-build-debug-in-eclipse
https://github.com/bjmi/m2e.sourcelookup
這裡直接安裝https://bjmi.github.io/update-site/好像就可以了,昨天安裝的


但是這個辦法,不是隨便能成功的。eclipse不同版本,可能會安裝失敗。Version: Luna Service Release 2 (4.4.2),我試過最慘的,因為安裝不了m2e.sourcelookup,報錯如下:
An error occurred while collecting items to be installed
session context was:(profile=epp.package.jee, phase=org.eclipse.equinox.internal.p2.engine.phases.Collect, operand=, action=).
No repository found containing: osgi.bundle,org.eclipse.m2e.archetype.common,1.7.0.20160603-1931
No repository found containing: osgi.bundle,org.eclipse.m2e.core,1.7.0.20160603-1933
然後,就重新安裝了m2e,線上的安裝,結果,居然把原來的maven選單和配置全搞沒了。後來,換了一個版本的eclipse,Version: Mars.2 Release (4.5.2)
然後再安裝
m2e.sourcelookup    https://bjmi.github.io/update-site/,然後在debug配置環境中,加上maven dependencies of 'my Project',實際操作是,點add 然後看到maven的東西,點進來