我有一个在
上运行的应用程序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
上运行。
如何更改?
答案 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中的部分