使用maven在嵌入式tomcat7上部署webapp?

时间:2014-12-08 15:38:16

标签: java spring maven

我正在尝试使用maven在嵌入式tomcat7服务器上部署基于Spring的Web应用程序。以下是tomcat7 maven插件的maven配置:

<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<port>9090</port>
<path>/</path>
<addContextWarDependencies>true</addContextWarDependencies>
</configuration>
</plugin>

当我访问http://localhost:9090时,应用程序未完全部署(我只在标题中看到应用程序标题)。为了启动嵌入式服务器并部署应用程序,我使用了

mvn clean install tomcat7:run

实现此目的的正确maven配置是什么? (如果有的话)

0 个答案:

没有答案