SpringBoot 中freemarker自定义标签学习

SpringBoot 中freemarker自定义标签学习

为什么要自定义标签

能够自定义模型,对一些常见的公用返回数据,不用每次通过页面属性进行响应。
可以通过自定义标签,在页面进行不同的包装

开发准备

pom依赖:


	org.springframework.boot
	spring-boot-starter-freemarker

自定义标签类

import com.lee.self.admin.service.IBlogService;
import freemarker.core.Environment;
import freemarker.template.*;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import java.io.IOException;
import java.util.Map;

/**
 * @ClassName BlogTag
 * @Description 使用方法<@blogTag method="recentBlog" pageSize="10"> 对应的是recentblog方法 pageSize对应的是参数
 *
 * @Auth JussiLee
 * @Date 2019/2/15 9:19
 */
@Component
public class BlogTag implements TemplateDirectiveModel{

    //定义<@blogTag>标签中的参数名称
    private static final String pageSize = "pageSize";

    @Autowired
    private IBlogService blogService;

    public Object recentBlog(String pageSize){
        if(!StringUtils.isEmpty(pageSize)){
            return blogService.getRecent(Integer.valueOf(pageSize));
        }
        return blogService.getRecent(10);
    }

    /**
     *
     * @param environment 运行的环境
     * @param map 方法参数map  方法名和值
     * @param templateModels
     * @param templateDirectiveBody 输出形式
     * @throws TemplateException
     * @throws IOException
     */
    @Override
    public void execute(Environment environment, Map map, TemplateModel[] templateModels, TemplateDirectiveBody templateDirectiveBody) throws TemplateException, IOException {
        String pageSize = map.get(this.pageSize).toString();
        environment.setVariable("recentBlog", getModel(recentBlog(pageSize)));
        //遇到一个坑,如果页面是这样写的<@blogTag  method="recentBlog"  pageSize="3" >
        //中间没有任何内容,这里会一直报空指针异常
        templateDirectiveBody.render(environment.getOut());
    }

    private DefaultObjectWrapper getBuilder() {
        return new DefaultObjectWrapperBuilder(Configuration.VERSION_2_3_25).build();
    }

    private TemplateModel getModel(Object o) throws TemplateModelException {
        return this.getBuilder().wrap(o);
    }
}

定义页面返回配置

@Configuration
public class TagConfig {

    @Autowired
    private freemarker.template.Configuration configuration;

    @Autowired
    private BlogTag blogTag;

    @PostConstruct
    public void shareVariable() {
        configuration.setSharedVariable("blogTag", blogTag);
    }
}

页面效果

<@blogTag  method="recentBlog"  pageSize="3" >
   <#list recentBlog as blog>
       
${blog_index} ---${blog.title}

1、Config中的PostConstruct 注解忘了加

2、调试的时候直接<@blogTag method=“recentBlog” pageSize=“3” >/@blogTag这样写,一直报空指针异常

你可能感兴趣的:(学习笔记)