1
我有一個情況在這裏,我在JSF的2.1被部署爲http://localhost:8080/myWebApplication
和「META-INF」我有context.xml中它具有以下配置的應用程序多上下文用於Java Web應用程序
<?xml version="1.0" encoding="UTF-8"?>
<Context antiJARLocking="true" path="/myWebApplication" />
現在我想縮短名稱沒有鬆動的背景下=>「myWebApplication」喜歡「/ MWP」
我試着做以下,但預期它沒有工作:
<?xml version="1.0" encoding="UTF-8"?>
<Context antiJARLocking="true" path="/myWebApplication" />
<Context antiJARLocking="true" path="/mwp" />
請告知是否有可能或有任何解決方法來實現此目的。
在這裏找到 http://stackoverflow.com/questions/11721966/how-can-i-map-multiple-contexts-to-the-same-war-file-in-tomcat –
這是我解決我的問題的方法。它不符合主要問題,但它對我有用。 我在tomcat/webapps中創建了一個名爲mwp的文件夾,並向其添加了一個index.html文件,並使用meta-refresh標籤指向orignal上下文。 ", false) });
相關問題