我尝试了这个http://tomcat.apache.org/maven-plugin-2.2/tomcat7-maven-plugin/usage.html#Using_a_different_context_path,但是它没有在/my/custom/context/3.1上下文中部署应用程序,而是部署在artifactId-version上下文中。
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<path>/my/custom/context/3.1</path>
</configuration>
</plugin>
有任何疑问可能是什么问题?