博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
03.Beetl模板变量以及自定义模板配置---《Beetl视频课程》
阅读量:6431 次
发布时间:2019-06-23

本文共 4196 字,大约阅读时间需要 13 分钟。

  hot3.png

本期视频设置一个全局可配置的网站标题;

内容简介:使用临时变量、全局变量、共享变量、自定义Beetl配置、使用ctxPath解决乱码、404等问题

一起学beetl目录:

作者:GK


临时变量

在模板中定义的变量成为临时变量,这类似js中采用var 定义的变量,如下例子

<%var a = "xxxx";%>

全局变量

全局变量是通过template.binding传入的变量,这些变量能在模板的任何一个地方,包括子模板都能访问到。如java代码里

template.binding("list",service.getUserList());//在模板里<%for(user in list){%>hello,${user.name};<% } %>

在请求中beetl会从request->attributes中获取变量作为模板变量,所以下面的page,blogSiteTitle也是全局变量

@GetMapping("/")    public String index(@RequestParam(required = false, defaultValue = "1") Integer pageNumber,                        @RequestParam(required = false, defaultValue = "8") Integer pageSize,                        HttpServletRequest request) {        PageQuery
pageQuery = blogService.pageBlog(pageNumber, pageSize); request.setAttribute("page", pageQuery); request.setAttribute("blogSiteTitle", "XXX网站"); return "index1.html"; }

共享变量 共享变量指在所有模板中都可以引用的变量,可通过groupTemplate.setSharedVars(Map<String, Object> sharedVars)传入变量,这些变量能用在 所有模板 的任何一个地方

GroupTemplate gt = new GroupTemplate(resourceLoader, cfg);Map
shared = new HashMap
();shared.put("name", "beetl");gt.setSharedVars(shared);

哪怎么去获取GroupTemplate对象呢?我们可以自定义一个Beetl配置。然后设置我们要的值。

自定义beetl配置

package com.ibeetl.blog.config;import com.ibeetl.starter.BeetlTemplateConfig;import org.beetl.core.GroupTemplate;import org.beetl.core.resource.ClasspathResourceLoader;import org.beetl.ext.spring.BeetlGroupUtilConfiguration;import org.beetl.ext.spring.BeetlSpringViewResolver;import org.springframework.beans.factory.annotation.Qualifier;import org.springframework.beans.factory.annotation.Value;import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import java.util.HashMap;import java.util.Map;import java.util.Properties;/** * @author GavinKing * @ClassName: BeetlConfig * @Description: * @date 2018/11/22 */@Configurationpublic class BeetlConfig {    //模板根目录 ,比如 "templates"    @Value("${beetl.templatesPath}") String templatesPath;    @Value("${blog.title}") String title;    @Bean    public GroupTemplate getGroupTemplate(BeetlGroupUtilConfiguration beetlGroupUtilConfiguration) {        GroupTemplate gt = beetlGroupUtilConfiguration.getGroupTemplate();        Map
shared = new HashMap<>(); shared.put("blogSiteTitle", title); gt.setSharedVars(shared); return gt; } @Bean public BeetlGroupUtilConfiguration getBeetlGroupUtilConfiguration() { BeetlGroupUtilConfiguration beetlGroupUtilConfiguration = new BeetlGroupUtilConfiguration(); //获取Spring Boot 的ClassLoader ClassLoader loader = Thread.currentThread().getContextClassLoader(); if(loader==null){ loader = BeetlConfig.class.getClassLoader(); } ClasspathResourceLoader cploder = new ClasspathResourceLoader(loader, templatesPath); beetlGroupUtilConfiguration.setResourceLoader(cploder); beetlGroupUtilConfiguration.init(); //如果使用了优化编译器,涉及到字节码操作,需要添加ClassLoader beetlGroupUtilConfiguration.getGroupTemplate().setClassLoader(loader); return beetlGroupUtilConfiguration; } @Bean(name = "beetlViewResolver") public BeetlSpringViewResolver getBeetlSpringViewResolver(BeetlGroupUtilConfiguration beetlGroupUtilConfiguration) { BeetlSpringViewResolver beetlSpringViewResolver = new BeetlSpringViewResolver(); beetlSpringViewResolver.setContentType("text/html;charset=UTF-8"); beetlSpringViewResolver.setOrder(0); beetlSpringViewResolver.setConfig(beetlGroupUtilConfiguration); return beetlSpringViewResolver; }}

从session中取值

从session中取值和request中一样,只不过前面加一个session

${session.title}

解决编码错误

修改SpringBoot的 application.properties配置文件,增加编码的配置

server.tomcat.uri-encoding=UTF-8spring.http.encoding.charset=UTF-8spring.http.encoding.enabled=truespring.http.encoding.force=truespring.messages.encoding=UTF-8

共享变量ctxPath

Beetl默认共享变量ctxPath表示 Web应用ContextPath

可以用解决路径问题,如 图片、样式无法找到的问题


项目git地址:

视频地址:下载下来会更清晰

百度网盘下载: 提取码: 68im

bilibili (可以调节清晰度):

博客目录:

转载于:https://my.oschina.net/gking/blog/2909688

你可能感兴趣的文章
国家能源局:《电力企业网络与信息安全专项监管报告》
查看>>
Gartner:2012年SIEM(安全信息与事件管理)市场分析报告
查看>>
社交大革命,不可遏止的互联网春天
查看>>
也谈nginx的安全限制
查看>>
mongodb数据库问题三则
查看>>
【翻译】了解ASP.NET MVC的HTML助手
查看>>
老男孩:Linux运维岗位强于开发岗位的6点优势
查看>>
烂泥:mysql5.5多实例部署
查看>>
了解BYOD---工作方式的新时尚
查看>>
fastdfs binlog同步BUG
查看>>
基于DRBD构建高可用主从MySQL服务器
查看>>
MS UC 2013-0-虚拟机-标准化-部署-1-虚拟化-部署
查看>>
揭秘一个不起眼的微商新品牌,如何快速赢得客户信任?
查看>>
位图和SVG用法比较
查看>>
网络常见劫持杂谈
查看>>
Windows 7合理虚拟内存RAMDISK提升运行性能
查看>>
SharePoint Server 2013 之一:为SharePoint启航
查看>>
NVMe闪存慢慢来
查看>>
六、把文件存放在SDCard
查看>>
[轉]通过DNS的负载均衡方案Round-robin DNS
查看>>