我一直在mvn tomcat7-maven-plugin:run -am -pl :foo
成功地使用 Tomcat 一次只运行一个项目,如下所示。现在我想让多个模块在同一个端口但不同的上下文下运行。例如,我想要:
/ => foo.war
/bar => bar.war
这是我一直在使用的示例 pom.xml 片段:
<project><!-- ... -->
<build><!-- ... -->
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.0-SNAPSHOT</version>
<configuration>
<path>/</path>
<port>8080</port>
<addContextWarDependencies>true</addContextWarDependencies>
<addWarDependenciesInClassloader>true</addWarDependenciesInClassloader>
<warSourceDirectory>${project.build.directory}/${project.build.finalName}/</warSourceDirectory>
</configuration>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>bar</artifactId>
<version>${project.version}</version>
<type>war</type>
<scope>tomcat</scope>
</dependency>
</dependencies>
</plugin>
</plugins>
</pluginManagement>
</build>
<pluginRepositories>
<pluginRepository>
<id>apache.snapshots</id>
<name>Apache Snapshots</name>
<url>http://repository.apache.org/content/groups/snapshots-group/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</project>
这可以通过tomcat7-maven-plugin:run
插件实现吗?我正在努力寻找正确的语法以使其正常运行。当我运行maven
命令来运行它时,它只运行它在项目层次结构中找到的第一个。如果我使用<fork>true</fork>
或显然从不同的终端运行它们,那么我会得到“java.net.BindException:地址已经在使用:8080”。