須要在spring-mvc.xml 視圖解析器的配置文件中html
增長以下配置,不然不會啓用web.xml的默認歡迎頁。或只能訪問jsp頁面的歡迎頁。web
<!--跳轉到默認歡迎頁面 不添加只能跳轉到jsp頁面--> <mvc:default-servlet-handler/>
項目web.xml歡迎頁面配置以下:spring
<welcome-file-list><!--指定歡迎頁面--> <welcome-file>/index.html</welcome-file> <welcome-file>/index.jsp</welcome-file> </welcome-file-list>
index.html 代碼瀏覽器
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <h1 align="center" style="text-align: center; color: red">Hello World html</h1> </body> </html>
啓動瀏覽器訪問以下spring-mvc