2012-12-16 69 views
1

我已經開發出包含servlet和幾個Java類和另外一個HTML頁面名爲home.html的是打開頁面的應用程序..關於在web.xml中的歡迎頁面設置的servlet

我的web.xml是這種格式..

<servlet> 
    <servlet-name>hello</servlet-name> 
    <servlet-class>com.saral.MyServlet</servlet-class> 
    </servlet> 
    <servlet-mapping> 
    <servlet-name>hello</servlet-name> 
    <url-pattern>/helloServlet</url-pattern> 
    </servlet-mapping> 

    <welcome-file-list> 
    <welcome-file>FirstDemo/WebContent/home.html</welcome-file> 
    </welcome-file-list> 

    <listener> 
    <listener-class>com.saral.SessionCounter</listener-class> 
</listener> 

現在我的查詢是在Tomcat上部署後,在主界面打開得到的.. http://imageshack.us/photo/my-images/835/ie1.png/

,但我想這個頁面將得到加載爲第一個 http://imageshack.us/photo/my-images/651/ie3f.jpg/

請告訴我需要什麼樣的變化做,讓我打開的頁面變得正確

+0

如果您有答案,請不要刪除整個問題。只需標記接受的最有用的答案,或者如果實際上有不同的答案,請發佈您自己的答案。 – BalusC

+0

順便問一下,「關於」每次問題標題是什麼?只要在那裏陳述一個具體的問題/陳述。這顯然是顯而易見的問題標題,然後將視具體問題:) – BalusC

回答

3

如果您home.html顯示爲您的主頁,然後就在你的web.xml更改welcome-file-list標籤

<welcome-file-list> 
    <welcome-file>home.html</welcome-file> 
</welcome-file-list> 
+0

沒有兄弟你沒有得到我的觀點..!我已經完成了,首先檢查我的web.xml – user1906154

+0

@ user1906154你想要什麼? – Abubakkar

+0

我想我的第一個打開的頁面設置爲home.html ... http:// localhost:9060/FirstDemo/home.html – user1906154