spring mvc 新搭建web項目 不跳轉web.xml中配置的歡迎頁面

須要在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

相關文章
相關標籤/搜索