2014-02-12 108 views
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" /> 

請告知是否有可能或有任何解決方法來實現此目的。

+0

在這裏找到 http://stackoverflow.com/questions/11721966/how-can-i-map-multiple-contexts-to-the-same-war-file-in-tomcat –