我已經開發出包含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/
請告訴我需要什麼樣的變化做,讓我打開的頁面變得正確
如果您有答案,請不要刪除整個問題。只需標記接受的最有用的答案,或者如果實際上有不同的答案,請發佈您自己的答案。 – BalusC
順便問一下,「關於」每次問題標題是什麼?只要在那裏陳述一個具體的問題/陳述。這顯然是顯而易見的問題標題,然後將視具體問題:) – BalusC