jsp中sitemesh修改tagRule技术分享
sitemesh默认提供了一些常用的rule
可以看到其实可以选择
/** * Extracts the contents of any elements that look like * <code><content tag='foo'>...</content></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
最终可以直接输出
以上就是我们给大家整理的本次教程的全部内容,感谢你对我们的支持。
上一篇:秒杀系统Web层设计的实现方法
栏 目:JSP编程
本文标题:jsp中sitemesh修改tagRule技术分享
本文地址:https://www.xiuzhanwang.com/a1/JSPbiancheng/11438.html
您可能感兴趣的文章
- 01-11在JSP中使用formatNumber控制要显示的小数位数方法
- 01-11jsp文件下载功能实现代码
- 01-11JSP页面跳转方法大全
- 01-11jsp 使用request为页面添加静态数据的实例
- 01-11JSP servlet实现文件上传下载和删除
- 01-11SpringMail使用过程中的报错解决办法
- 01-11JSP状态管理的简单介绍
- 01-11jsp+servlet实现文件上传与下载功能
- 01-11JSP的setProperty的使用方法
- 01-11Jsp+Servlet实现文件上传下载 文件上传(一)
阅读排行
本栏相关
- 01-11web下载文件和跳转的方法
- 01-11Spring注入Date类型的三种方法总结
- 01-11在JSP中使用formatNumber控制要显示的小
- 01-11Properties 持久的属性集的实例详解
- 01-11EJB3.0部署消息驱动Bean抛javax.naming.Na
- 01-11jsp文件下载功能实现代码
- 01-11JSP页面跳转方法大全
- 01-11详解Spring的核心机制依赖注入
- 01-11jsp 使用request为页面添加静态数据的实
- 01-11Spring获取ApplicationContext对象工具类的
随机阅读
- 04-02jquery与jsp,用jquery
- 01-10delphi制作wav文件的方法
- 01-11ajax实现页面的局部加载
- 01-10使用C语言求解扑克牌的顺子及n个骰子
- 01-11Mac OSX 打开原生自带读写NTFS功能(图文
- 01-10C#中split用法实例总结
- 08-05dedecms(织梦)副栏目数量限制代码修改
- 01-10SublimeText编译C开发环境设置
- 08-05DEDE织梦data目录下的sessions文件夹有什
- 08-05织梦dedecms什么时候用栏目交叉功能?