SiteMesh结合Freemarker或velocity使用

阅读更多

Freemarker 入门示例 http://cuisuqiang.iteye.com/blog/2031768
FreeMarker 整合Struts2示例 http://cuisuqiang.iteye.com/blog/2031860

SiteMesh入门示例 http://cuisuqiang.iteye.com/blog/2066166 

 

那么如何将Freemarker与SiteMesh结合起来使用,这在官方示例中已经有了相关例子。
查看官方示例中decorators.xml文件,里面有一段是关于Freemarker使用的


	/freemarker.html

 

也就是说请求freemarker.html时会拦截并处理,并发freemarker.ftl作为默认页面处理
看一下freemarker.ftl的内容,因为在JSP中是使用标签来获取Head或者Body的,所以在这个页面主要是看看如何获取这些元素。


	
		Freemarker Decorator - ${title}
		
	    ${head}
	
    
      
${title}

${body}

 

可以看到,直接通过$来获取几个元素,${title}、 ${head}、${base}、${title}、${body}
velocity的结合是一样的,看看关于他的配置


	/velocity.html

 

看看velocity.vm页面内容


	
		Velocity Decorator - $title
		
	    $head
	
    
      
$title

$body

 

不多解释了。

 

请您到ITEYE网站看 java小强 原创,谢谢!
http://cuisuqiang.iteye.com/!

自建博客地址:http://www.javacui.com/ ,内容与ITEYE同步!

你可能感兴趣的:(SiteMesh,Freemarker,velocity,页面框架,集成)