我一直在使用mvn tomcat7-maven-plugin:run -am -pl :foo
成功地在Tomcat like is shown here中一次只运行一个项目。现在我想在同一个端口但不同的上下文下运行多个模块。例如,我想:
/ => 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”。
答案 0 :(得分:20)
正如已经建议的那样,使用插件配置的<webapps>
部分,但为每个webapp添加额外的参数<asWebapp>true</asWebapp>
,即:
<webapps>
<webapp>
<groupId>com.company</groupId>
<artifactId>mywebapp</artifactId>
<version>1.0</version>
<type>war</type>
<asWebapp>true</asWebapp>
</webapp>
<webapp>
<groupId>com.company</groupId>
<artifactId>mywebapp2</artifactId>
<version>2.0</version>
<type>war</type>
<asWebapp>true</asWebapp>
</webapp>
</webapps>
默认情况下,这些额外的Web应用程序部署了${artifactId}
上下文路径。
看起来没有这个参数,当你运行像mvn tomcat7:run
这样的东西时,会无声地丢弃额外的webapps(在稳定版本2.0上试过)。 Related Jira issue告诉它是为了“向后兼容”而做的。
答案 1 :(得分:1)
使用类似
的内容 <configuration>
<webapps>
<webapp>
<groupId>com.company</groupId>
<artifactId>mywebapp</artifactId>
<version>1.0</version>
<type>war</type>
</webapp>
</webapps>
</configuration>