解決Gradle產生Eclipse支援後,發布到Tomcat丟失依賴jar包的問題

來源:互聯網
上載者:User

標籤:style   http   color   os   使用   java   io   ar   for   


最近一個項目中,使用號稱下一代構建工具的Gradle構建項目。

使用中發現一個問題,Gradle從中央庫下載的jar檔案在系統的其它目錄,使用gradle eclipse添加Eclipse支援時,jar檔案是以外部依賴的形式匯入的。Eclipse將web項目發布到Tomcat時,是不會自動發布這些依賴的。

可以通過Eclipse在項目上右擊 - Propertics - Deployment Assembly,添加“Java Build Path Entries”,添加所有依賴的jar包,就可以在發布時自動發布外部依賴的jar包。

但是手動添加,是不符合自動化構建的要求的,開啟.classpath檔案,發現gradle自動產生的檔案含有類似如下的代碼

<classpathentry sourcepath="C:/Documents and Settings/XXX/.gradle/caches/artifacts-24/filestore/commons-collections/commons-collections/3.2/source/73d0340eaecbb0ec9d3e0ace90547ef08cbfaf27/commons-collections-3.2-sources.jar" kind="lib" path="C:/Documents and Settings/XXX/.gradle/caches/artifacts-24/filestore/commons-collections/commons-collections/3.2/jar/f951934aa5ae5a88d7e6dfaa6d32307d834a88be/commons-collections-3.2.jar" exported="true" />

 

在Eclipse中設定好Deployment Assembly後,代碼變為這樣

<classpathentry sourcepath="C:/Documents and Settings/XXX/.gradle/caches/artifacts-24/filestore/commons-collections/commons-collections/3.2/source/73d0340eaecbb0ec9d3e0ace90547ef08cbfaf27/commons-collections-3.2-sources.jar" kind="lib" path="C:/Documents and Settings/XXX/.gradle/caches/artifacts-24/filestore/commons-collections/commons-collections/3.2/jar/f951934aa5ae5a88d7e6dfaa6d32307d834a88be/commons-collections-3.2.jar" exported="true"> <attributes> <attribute name="org.eclipse.jst.component.dependency" value="/WEB-INF/lib" /> </attributes> </classpathentry>

 

這樣就簡單了,我們讓gradle自動添加Deployment Assembly

在gradle.build中添加下面的代碼

// 產生Eclipse支援時,自動產生Deployment Assembly eclipse.classpath.file.withXml {     def node = it.asNode();     for (Node n : node.children()) {         if ("lib".equals(n.attribute("kind"))) {             def node_attributes =new Node(n,"attributes");             def map =new HashMap();             map.put("name","org.eclipse.jst.component.dependency");             map.put("value","/WEB-INF/lib");             def node_attribute =new Node(node_attributes,"attribute", map);         }     } }

 

儲存以後重新運行gradle eclipse,回到Eclipse重新整理項目,現在發布項目,就能自動將所有外部依賴jar包發布到Tomcat下

解決Gradle產生Eclipse支援後,發布到Tomcat丟失依賴jar包的問題

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.