Web应用程序的Tomcat上下文路径无法正常工作

时间:2011-07-08 11:07:53

标签: tomcat tomcat6 artifactory

我正在默认的tomcat安装(ubuntu服务器分发版)下安装Artifactory(http://www.jfrog.com/products.php)。我创建了一个/etc/tomcat6/Catalina/localhost/artifactory.xml文件,其中包含以下内容:

<Context path="/maven" docBase="${artifactory.home}/webapps/artifactory.war" debug="0">
    <Manager className="org.apache.catalina.session.PersistentManager" saveOnRestart="false"/>
</Context>

我希望在http://serverhostname:8080/maven下提供神器,但它会在http://serverhostname:8080/artifactory下提供。有线索吗?

1 个答案:

答案 0 :(得分:3)

Context docs表示将使用文件的基本名称,因此可能会忽略path属性。