我正在尝试设置Maven来启动Tomcat(使用Cargo)并部署我的项目以准备集成测试。
这是我的POM:
< ... >
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>1.1.3</version>
<configuration>
<container>
<containerId>tomcat6x</containerId>
<type>installed</type>
<home>/Dev/apache-tomcat-6.0.29/</home>
</container>
<configuration>
<type>existing</type>
<home>/Dev/apache-tomcat-6.0.29/</home>
</configuration>
</configuration>
<executions>
<execution>
<id>start</id>
<phase>pre-integration-test</phase>
<goals>
<goal>start</goal>
</goals>
</execution>
<execution>
<id>stop</id>
<phase>post-integration-test</phase>
<goals>
<goal>stop</goal>
</goals>
</execution>
</executions>
</plugin>
< .... >
当我清理和构建时,它找不到位于我的Tomcat / lib目录中的Catalina.jar:
[talledLocalContainer] java.lang.ClassNotFoundException: org.apache.catalina.startup.Catalina
[talledLocalContainer] at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
[talledLocalContainer] at java.security.AccessController.doPrivileged(Native Method)
[talledLocalContainer] at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
[talledLocalContainer] at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
[talledLocalContainer] at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
[talledLocalContainer] at org.apache.catalina.startup.Bootstrap.init(Bootstrap.java:216)
[talledLocalContainer] at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:391)
在运行clean并使用debug启用构建时,它显示它正在tomcat / server / lib中查找Catalina.jar:
[talledLocalContainer] Failed to find Tomcat version, base error [\Dev\apache-tomcat-6.0.29\server\lib\catalina.jar (The system cannot find the path specified)]
[talledLocalContainer] Parsed Tomcat version = [6.x]
[talledLocalContainer] Tomcat 6.x starting...
[talledLocalContainer] Project base dir set to: C:\Users\Colin\Documents\NetBeansProjects\HousingWeb
[talledLocalContainer] Executing 'C:\Program Files\Java\jdk1.6.0_22\jre\bin\java.exe' with arguments:
我的tomcat目录如下所示:
- apache-tomcat-6.0.29
+ bin
+ conf
- lib
- Catalina.jar
- [bunch of other .jars]
+ logs
+ temp
+ webapps
+ work
- [other files]
为什么Cargo会在/ server / lib下寻找Tomcat的lib文件夹而不仅仅是/ lib?
有没有办法覆盖这种行为?
更新:
在查看不同版本的Tomcat(5.5,6.0,7.0)后,看起来5.5的目录结构有/ server / lib和/ common / lib,其中6.0和7.0只有/ lib。
Cargo似乎试图实例化一个Tomcat 5.5应用程序。如何配置它以使用6.0?
答案 0 :(得分:2)
如果你下载并解压缩Tomcat而不是使用你的Tomcat,你会遇到同样的问题吗?
<container>
<containerId>tomcat6x</containerId>
<zipUrlInstaller>
<url>http://www.apache.org/dist/tomcat/tomcat-6/v6.0.35/bin/apache-tomcat-6.0.35.zip</url>
</zipUrlInstaller>
</container>