beetl模板引擎使用笔记
Posted Go_Skill
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了beetl模板引擎使用笔记相关的知识,希望对你有一定的参考价值。
maven项目pom:
<dependency> <groupId>com.ibeetl</groupId> <artifactId>beetl</artifactId> <version>版本号</version> </dependency>
spring-mvc.xml配置视图解析
<bean id="beetlConfig" class="org.beetl.ext.spring.BeetlGroupUtilConfiguration" init-method="init"/> <!-- 定义beetl视图文件解析--> <bean id="viewResolver" class="org.beetl.ext.spring.BeetlSpringViewResolver"> <property name="contentType" value="text/html;charset=UTF-8"/> <property name="suffix" value=".html"/> </bean>
在resource 目录下创建beetl.properties配置文件 自定义配置
#自定义配置
#模板根路径
RESOURCE.root = /WEB-INF/views/
#定义模板全局变量的类
WEBAPP_EXT = com.zede.util.GlobalExt
#是否检测文件变化
RESOURCE.autoCheck = true
#在页面输出错误提示信息
ERROR_HANDLER =org.beetl.ext.web.WebErrorHandler
GlobalExt.class:
public class GlobalExt implements WebRenderExt { /** * 这里可以配置模板 全局变量 如:template.binding("version","1.0"); */ @Override public void modify(Template template, GroupTemplate gtemplate, HttpServletRequest request, HttpServletResponse response) { template.binding("version", "1.0"); } }
可以实现所有模板都能读取 ${version} 这个变量
==> 页面显示错误信息: ERROR_HANDLER =org.beetl.ext.web.WebErrorHandler
以上是关于beetl模板引擎使用笔记的主要内容,如果未能解决你的问题,请参考以下文章