解決eclipse插件openextern沒法打開依賴jar包的問題

適用於eclipse4.x.x,本人環境爲eclipse4.2.0java

 一、openexterneclipse

官網:http://code.google.com/p/openextern/maven

源代碼:svn checkout http://openextern.googlecode.com/svn/trunk/ openextern-read-onlyide

問題:沒法打開maven、jar等外部jar包依賴的問題svn

二、問題解決ui

導入eclipse中,進行調試;發現可以獲取路徑;在BaseOpenAction.java中,發現方法public String getSelectedFolderPath(ISelection selection)的ISelection已經獲取到路徑,但不屬於判斷的資源類型,返回爲空。 因此只須要作以下處理便可。google

  
  
           
  
  
  1. /** 
  2.              * dependency jar folder 
  3.              */ 
  4.             String fullname = sel.toString(); 
  5.             int firstIndexOfBlank = fullname.indexOf(" "); 
  6.             String fullJarPath = fullname.substring(0, firstIndexOfBlank); 
  7.             if(!"".equals(fullJarPath)){ 
  8.                 return fullJarPath; 
  9.             } 

三、打包發佈spa

在eclipse中開發plugin時,能夠藉助eclipse ide生成build.xml,再執行ant build.update.jar便可。調試

關於eclipse中plugin的生成發佈,參考:http://tianya23.blog.51cto.com/1081650/611994code

相關文章
相關標籤/搜索