我使用的是spring mvc 3.2.2。我有一個主要的索引頁面,其中包含登錄/用戶信息的標題以及導航菜單和頁腳(以及它自己的內容)。現在Nav Menu的主頁面 - 使用Spring MVC的部分視圖?
> http://localhost:8080/mywebsite/home/index.jsp
<html>....
<head>...
<body>
<headerbar>...
<navmenu>...
<!-- Content here....-->
<footer>
<body>
,我會加入新的控制器和我怎麼能重複使用頁眉/導航菜單和頁腳的行動使我沒有將它添加在其他頁面?
所以爲我的用戶控制網頁的所有我想要做的就是使用戶的信息,而不必包含頭/導航/頁腳等
> http://localhost:8080/mysite/account/user/8585
<!-- Only include the following but have it render as body() where nav menu/footer/header are already included in some partial view or master page -->
<h4>User Account</h2>
<user>${username}</user>
<firstname>${firstname}</firstname>
我怎樣才能做到這一點?
<html>....
<head>...
<body>
<headerbar>...
<navmenu>...
RenderBody?() <!-- Content here from any page include home/index.jsp and account/user....-->
<footer>
<body>
嗯....您引用的顯着超過5yrs老重複? http://stackoverflow.com/questions/383822/jsp-based-templating-with-spring – JaJ