要求是使用 maven 插件在 tomcat 根目录下部署应用程序。
<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>
以上是在根目录下部署应用程序,但问题是应用程序使用存储在应用程序外部的“静态”文件夹中的图像、javascript 和其他 pdf 文件(大尺寸)。
c:\static\
请建议 pom.xml 中所需的配置以访问如下图像。 http://www.myhost.com:8080/static/image.js http://www.myhost.com:8080/static/about.pdf