Web 应用程序的 Tomcat 上下文路径不起作用

发布于 2024-11-19 05:30:46 字数 706 浏览 1 评论 0原文

我正在安装 Artifactory (http://www.jfrog.com/products.php)默认的 tomcat 安装(ubuntu 服务器发行版)。我创建一个包含以下内容的 /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 下提供artifactory ://serverhostname:8080/maven ,但它在 http://serverhostname:8080/artifactory 代替。有什么线索吗?

I'm installing Artifactory (http://www.jfrog.com/products.php) under a default tomcat installation (ubuntu server distribution). I create a /etc/tomcat6/Catalina/localhost/artifactory.xml file with the following contents:

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

I want artifactory to be served under http://serverhostname:8080/maven , but it gets served under http://serverhostname:8080/artifactory instead. Any clues?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

亣腦蒛氧 2024-11-26 05:30:46

Context 文档指出将使用文件的基本名称,因此很可能会忽略 path 属性。

The Context docs state that the base name of the file will be used so it's likely that the path attribute is simply ignored.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文