我想我可能已經找到了解決辦法:
在瘦戰爭教程,一個是應該jar添加WEB-INF/lib目錄/ *到packagingExcludes。然後,將所有的依賴關係添加到耳朵配置中,使其可用於罐子。
問題是,war-packaged依賴不會將其傳遞依賴項添加到ear的lib文件夾中,所以它們或者需要找到自己的方式進入ear lib文件夾或WEB-INF/lib文件夾戰爭包。
我選擇了最後一個,將它們添加到WAR文件的WEB-INF/lib中。
爲此,首先通過執行mvn dependency:tree
來獲取包含war/warpath資源的war項目的依賴關係樹。
接下來,找到warpath的依賴關係。在我的情況下,它看起來像這樣:
+- org.appfuse:appfuse-struts:warpath:2.0.2:compile
| +- org.appfuse:appfuse-web-common:war:2.0.2:compile
| +- org.appfuse:appfuse-web-common:warpath:2.0.2:compile
| +- displaytag:displaytag:jar:1.1.1:compile
| | \- org.slf4j:jcl104-over-slf4j:jar:1.4.2:compile
| +- commons-fileupload:commons-fileupload:jar:1.2.1:compile
| +- org.apache.commons:commons-io:jar:1.3.2:compile
| +- org.appfuse:appfuse-service:jar:2.0.2:compile
| | +- velocity:velocity:jar:1.4:compile
| | | \- velocity:velocity-dep:jar:1.4:runtime
| | +- org.codehaus.xfire:xfire-java5:jar:1.2.6:compile
| | | +- org.codehaus.xfire:xfire-aegis:jar:1.2.6:compile
| | | | \- net.java.dev.stax-utils:stax-utils:jar:20040917:compile
| | | +- org.codehaus.xfire:xfire-annotations:jar:1.2.6:compile
| | | +- xfire:xfire-jsr181-api:jar:1.0-M1:compile
| | | \- org.codehaus.xfire:xfire-core:jar:1.2.6:compile
| | | +- stax:stax-api:jar:1.0.1:compile
| | | +- org.codehaus.woodstox:wstx-asl:jar:3.2.0:compile
| | | \- commons-httpclient:commons-httpclient:jar:3.0:compile
| | \- org.codehaus.xfire:xfire-spring:jar:1.2.6:compile
| | +- org.apache.xbean:xbean-spring:jar:2.8:compile
| | \- org.codehaus.xfire:xfire-xmlbeans:jar:1.2.6:compile
| | \- xmlbeans:xbean:jar:2.2.0:compile
| +- commons-dbcp:commons-dbcp:jar:1.2.2:compile
| | \- commons-pool:commons-pool:jar:1.3:compile
| +- org.directwebremoting:dwr:jar:2.0.1:compile
| +- javax.servlet:jstl:jar:1.1.2:compile
| +- taglibs:standard:jar:1.1.2:compile
| +- opensymphony:oscache:jar:2.3:compile
| +- opensymphony:sitemesh:jar:2.2.1:compile
| +- org.tuckey:urlrewritefilter:jar:3.0.4:compile
| \- commons-lang:commons-lang:jar:2.4:compile
因此,我們需要確保這些都可用。這可以通過更改WEB-INF/lib/*的包裝排除來排除所有內容,而是排除除我們想保留的所有內容外的所有內容。
這可以這樣做:
<packagingExcludes>
%regex[WEB-INF/lib/(?!clickstream|struts|appfuse|commons-fileupload|commons-dbcp|dwr|oscache|sitemesh|urlrewritefilter|commons-lang|velocity|xwork|commons-digester).*.jar]
</packagingExcludes>
這將使GlassFish的停止抱怨不被發現的類。我還沒有到那裏,所以可能需要包括更多的罐子,但它越來越近了。使一切工作後
我的全packagingExcludes正則表達式是這樣的: %的正則表達式[WEB-INF/lib目錄/(?!點擊流|支柱|的appfuse |公地文件上傳|公地DBCP | DWR | OSCache的|的sitemesh | urlrewritefilter |公地郎|速度| XWork的|公共沼氣池| XFire軟件| xbean | OGNL | freemarker的|。ActiveMQ的)*罐子] – Tobb 2012-08-16 10:19:07