20

我一直在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”。

4

2 回答 2

20

正如已经建议的那样,使用<webapps>插件配置部分,但<asWebapp>true</asWebapp>为每个 webapp 添加附加参数,即:

<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(在稳定版本 2.0 上尝试过)时,额外的 webapps 会被默默地丢弃。相关的 Jira 问题告诉它是为了“向后兼容性”而完成的。

于 2012-11-02T11:02:46.113 回答
1

使用类似的东西

  <configuration>
    <webapps> 
      <webapp> 
        <groupId>com.company</groupId> 
        <artifactId>mywebapp</artifactId> 
        <version>1.0</version> 
        <type>war</type>    
      </webapp> 
    </webapps> 
  </configuration>
于 2012-08-15T21:20:11.927 回答