在tomcat 7中更改应用程序根上下文

时间:2015-03-27 07:24:40

标签: java tomcat

我有一个在

上运行的应用程序
http://localhost:8080/templates-web

我想将其更改为

http://localhost:8080/templates-ui

我已创建文件夹META-INF并在那里创建context.xml个文件。 context.xml的上下文看起来像这样

<?xml version='1.0' encoding='utf-8'?>

<Context sessionCookiePathUsesTrailingSlash='false' path="templates-ui"></Context>

但它不起作用。它仍然在templates-web上运行。

如何更改?

1 个答案:

答案 0 :(得分:0)

检查:

<Context path="" docBase="myAPP">
    <!-- Default set of monitored resources -->
    <WatchedResource>WEB-INF/web.xml</WatchedResource>
</Context>
<Context path="ROOT" docBase="ROOT">
    <!-- Default set of monitored resources -->
    <WatchedResource>WEB-INF/web.xml</WatchedResource>
</Context>

并在上面添加到server.xml中的部分