天天看點

JFinal下自定義Freemarker标簽實作

一、添加自定義Freemarker标簽

/**
 * @Description: 權限自定義标簽
 * @author 
 */
public class PermissionDirective implements TemplateDirectiveModel {
 @SuppressWarnings({ "rawtypes" })
 @Override
 public void execute(Environment env, Map params, TemplateModel[] loopVars, TemplateDirectiveBody body) throws TemplateException, IOException {
    if (params.containsKey("userId")) {
            String userId = params.get("userId").toString();
            
            //目前使用者
            User user = User.dao.findById(userId);
           
            if (user != null) {
             body.render(env.getOut());
            }
     } 
 }
}                

二、JFinal config中配置自定義标簽

 @Override
 public void configConstant(Constants me) {
 //自定義Freemarker标簽
  Map<String, Object> map = new HashMap<String, Object>();
  map.put(DirectiveCode.permission.toString(), new PermissionDirective());
  //多個繼續增加
  try {
   FreeMarkerRender.getConfiguration().setSharedVaribles(map);
  } catch (TemplateModelException e) {
   e.printStackTrace();
  }
  }                

三、Freemarker頁面中使用自定義标簽

 <@permission userId="002">
     <a href="/user/list" target="_blank" rel="external nofollow" >使用者管理</a>                

總結:通過以上三步配置即可在頁面上使用Freemarker自定義标簽。

版權聲明:本文為CSDN部落客「weixin_33924312」的原創文章,遵循CC 4.0 BY-SA版權協定,轉載請附上原文出處連結及本聲明。

原文連結:https://blog.csdn.net/weixin_33924312/article/details/92086003