当前位置: 代码网 > it编程>编程语言>Java > jsp中sitemesh修改tagRule技术分享

jsp中sitemesh修改tagRule技术分享

2024年05月18日 Java 我要评论
sitemesh默认提供了一些常用的rule可以看到其实可以选择/** * extracts the contents of any elements that look like * <cod

sitemesh默认提供了一些常用的rule

可以看到其实可以选择

/**
 * extracts the contents of any elements that look like
 * <code>&lt;content tag='foo'&gt;...&lt;/content&gt;</code> and write the contents
 * to a page property (page.foo).
 *
 * <p>this is a cheap and cheerful mechanism for embedding multiple components in a
 * page that can be used in different places in decorators.</p>
 *
 * @author joe walnes
 */
public class contentblockextractingrule extends basicblockrule<string> {
 private final contentproperty propertytoexport;
 public contentblockextractingrule(contentproperty propertytoexport) {
  this.propertytoexport = propertytoexport;
 }
 @override
 protected string processstart(tag tag) throws ioexception {
  tagprocessorcontext.pushbuffer();
  return tag.getattributevalue("tag", false);
 }
 @override
 protected void processend(tag tag, string tagid) throws ioexception {
  propertytoexport.getchild(tagid).setvalue(tagprocessorcontext.currentbuffercontents());
  tagprocessorcontext.popbuffer();
 }
}

修改scripttagrulebundle处理如下

public class scripttagrulebundle implements tagrulebundle {
 @override
 public void install(state defaultstate, contentproperty contentproperty, sitemeshcontext sitemeshcontext) {
  defaultstate.addrule("content", new contentblockextractingrule(contentproperty.getchild("page")));
 }
 @override
 public void cleanup(state defaultstate, contentproperty contentproperty, sitemeshcontext sitemeshcontext) {
 }
}

用法很简单使用content作为tag默认填上tag即可

比如

<content tag="reference">
<script type="text/javascript" src="<%=path%>/plugins/select2/js/select2.min.js"></script>
<script type="text/javascript" src="<%=path%>/plugins/select2/js/i18n/zh-cn.js"></script>
<script type="text/javascript" src="<%=path%>/plugins/bootstrap-modal/js/bootstrap-modal.js"></script>
<script type="text/javascript" src="<%=path%>/plugins/bootstrap-modal/js/bootstrap-modalmanager.js"></script>
</content>

在模板中这样

<body class="mainbody">
<sitemesh:write property='body'/>
<sitemesh:write property='page.reference'/>
</body>

这样就可以很简单的放入到任意位置!!!

弊端

这样虽然很简单 但是也存在一些问题 开发如果需要增加新的content必须要要到母版页【对的 其实sitemesh不就像是asp.net中的母版页么】

增加对应的sitemesh:write标签

propertytoexport.getchild(tagid).setvalue(tagprocessorcontext.currentbuffercontents());

并且上述代码中同样存在覆盖的问题 比如多处使用了同样的tagid

解决

sitemesh似乎没有提供直接用来拼接多个的tagrule

如果有需求将某块元素放入到末尾 可以考虑增加tagrule

在processend时直接将对应的元素直接append

最终可以直接输出

以上就是我们给大家整理的本次教程的全部内容,感谢你对代码网的支持。

(0)

相关文章:

版权声明:本文内容由互联网用户贡献,该文观点仅代表作者本人。本站仅提供信息存储服务,不拥有所有权,不承担相关法律责任。 如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 2386932994@qq.com 举报,一经查实将立刻删除。

发表评论

验证码:
Copyright © 2017-2025  代码网 保留所有权利. 粤ICP备2024248653号
站长QQ:2386932994 | 联系邮箱:2386932994@qq.com