では、現在のtomcat7-maven-plugin
プロジェクトを Web アプリケーションとして実行でき、<webapps>
同時に tomcat にロードされる追加のプロジェクトを指定できます。
私のプロジェクトは Web アプリケーションではありませんが、Web アプリケーションによって提供されるサービスにアクセスします。では、プロジェクト自体を Web アプリケーションとして実行せずに、多数の Web アプリケーションをデプロイするにはどうすればよいでしょうか? 次の Maven スニペットでは、context.xml が見つからないため、FileNotFoundExceptions が発生します。
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.0</version>
<executions>
<execution>
<id>run-tomcat</id>
<phase>${tomcat.run.phase}</phase>
<goals><goal>run-war-only</goal></goals>
<configuration>
<webapps>
<webapp>
<contextPath>/my/app1</contextPath>
<groupId>...</groupId>
<artifactId>...</artifactId>
<version>...</version>
<type>war</type>
<asWebapp>true</asWebapp>
</webapp>
... possibly more webapps ...
</webapps>
</configuration>
</execution>
<execution>
<id>tomcat-shutdown</id>
<phase>${tomcat.shutdown.phase}</phase>
<goals><goal>shutdown</goal></goals>
</execution>
</executions>
</plugin>
回避策:
path
アプリケーション自体は webapp ではありませんが、 aと aを構成する必要がありますcontextFile
。
<configuration>
<path>/my/non/existing/webapp</path>
<contextFile>src/test/resources/context.xml</contextFile>
<webapps>
...
指定context.xml
したファイルが存在している必要があります。web.xml
ファイルが存在しない場合でも、次のことがうまくいきました。
<?xml version="1.0" encoding="utf-8"?>
<Context path="/my/non/existing/webapp">
<WatchedResource>WEB-INF/web.xml</WatchedResource>
</Context>