我想我可能已经找到了解决方案:
在skinny wars 教程中,应该将WEB-INF/lib/*.jar 添加到packagingExcludes。然后,所有依赖项都将添加到 ear-configuration 中,使其可用于 jars。
问题在于,war 打包的依赖项不会将其传递依赖项添加到 ear 的 lib 文件夹中,因此它们要么需要找到进入 ear lib 文件夹的方式,要么需要找到 war 包的 WEB-INF/lib 文件夹。
我选择使用最后一个,将它们添加到 war-file 的 WEB-INF/lib 中。
为此,首先通过执行mvn dependency:tree
.
接下来,找到 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/* 的 packagingExclude 更改为不排除所有内容来完成,而是排除除我们想要保留的内容之外的所有内容。
这可以通过以下方式完成:
<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 不再抱怨找不到类。我还没到那里,所以可能需要包括更多的罐子,但它越来越近了。