2009-07-06 71 views

回答

6

你可以做到以下幾點:

<servlet-mapping> 
    <servlet-name>ServletName</servlet-name> 
    <url-pattern>/a</url-pattern> 
    </servlet-mapping> 
    <servlet-mapping> 
    <servlet-name>ServletName</servlet-name> 
    <url-pattern>/b</url-pattern> 
    </servlet-mapping> 

然後雙方http://host/webapp/ahttp://host/webapp/b將被映射到同一個servlet。

如果你想刪除/ webapp的前綴,你需要setting the path attribtue of the context to "" in your context xml file設置你的web應用程序的根目錄(webapps下或在META-INF/context.xml的)

+0

你的意思是在的是context.xml/conf目錄? (並在加\t 「」?) – Schildmeijer 2009-07-06 14:24:33