要求是使用maven插件在tomcat root上部署应用程序。
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>tomcat-maven-plugin</artifactId>
<version>1.1</version>
<configuration>
<url>http://www.myhost.com:8080/manager</url>
<server>tomcat6</server>
<path>/</path>
<contextFile>src/main/tomcatconf/context.xml</contextFile>
<mode>context</mode>
</configuration>
上面是在root部署应用程序,但问题是应用程序使用图像,javascript和其他pdf文件(大尺寸)从文件夹“static”存储在应用程序之外。
c:\static\
请建议pom.xml中所需的配置访问如下图像。 http://www.myhost.com:8080/static/image.js http://www.myhost.com:8080/static/about.pdf
答案 0 :(得分:1)
你可以像这样获得嵌入式tomcat7插件:
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.0</version>
</plugin>