2013-06-21 206 views
0

要求是使用maven插件在tomcat根部署應用程序。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

回答

1

可以得到嵌入tomcat7插件這樣的: