2

我在默认的 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>

我希望 artifactory 在http://serverhostname:8080/maven下提供服务,但它在http://serverhostname:8080/artifactory下提供服务。有什么线索吗?

4

1 回答 1

3

Context文档声明将使用文件的基本名称,因此很可能只是忽略了该属性path

于 2011-07-09T03:21:33.917 回答