网络编程 
首页 > 网络编程 > 浏览文章

jsp中sitemesh修改tagRule技术分享

(编辑:jimmy 日期: 2024/10/8 浏览:3 次 )

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

jsp中sitemesh修改tagRule技术分享

可以看到其实可以选择

/**
 * 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="/UploadFiles/2021-04-02/select2.min.js">

在模板中这样

<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

最终可以直接输出

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

上一篇:Jsp+Servlet实现文件上传下载 文件上传(一)
下一篇:JSP servlet实现文件上传下载和删除
一文看懂荣耀MagicBook Pro 16
荣耀猎人回归!七大亮点看懂不只是轻薄本,更是游戏本的MagicBook Pro 16.
人们对于笔记本电脑有一个固有印象:要么轻薄但性能一般,要么性能强劲但笨重臃肿。然而,今年荣耀新推出的MagicBook Pro 16刷新了人们的认知——发布会上,荣耀宣布猎人游戏本正式回归,称其继承了荣耀 HUNTER 基因,并自信地为其打出“轻薄本,更是游戏本”的口号。
众所周知,寻求轻薄本的用户普遍更看重便携性、外观造型、静谧性和打字办公等用机体验,而寻求游戏本的用户则普遍更看重硬件配置、性能释放等硬核指标。把两个看似难以相干的产品融合到一起,我们不禁对它产生了强烈的好奇:作为代表荣耀猎人游戏本的跨界新物种,它究竟做了哪些平衡以兼顾不同人群的各类需求呢?