一、添加自定义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