jsp中sitemesh修改tagRule技術(shù)分享
sitemesh默認(rèn)提供了一些常用的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默認(rèn)填上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>
這樣就可以很簡單的放入到任意位置!?。?/p>
弊端
這樣雖然很簡單 但是也存在一些問題 開發(fā)如果需要增加新的content必須要要到母版頁【對的 其實sitemesh不就像是asp.net中的母版頁么】
增加對應(yīng)的sitemesh:write標(biāo)簽
propertytoexport.getchild(tagid).setvalue(tagprocessorcontext.currentbuffercontents());
并且上述代碼中同樣存在覆蓋的問題 比如多處使用了同樣的tagid
解決
sitemesh似乎沒有提供直接用來拼接多個的tagrule
如果有需求將某塊元素放入到末尾 可以考慮增加tagrule
在processend時直接將對應(yīng)的元素直接append
最終可以直接輸出
以上就是我們給大家整理的本次教程的全部內(nèi)容,感謝你對碩編程的支持。
相關(guān)文章
- jsp+servlet實現(xiàn)文件上傳與下載功能
- EJB3.0部署消息驅(qū)動Bean拋javax.naming.NameNotFoundException異常
- 在JSP中使用formatNumber控制要顯示的小數(shù)位數(shù)方法
- 秒殺系統(tǒng)Web層設(shè)計的實現(xiàn)方法
- 將properties文件的配置設(shè)置為整個Web應(yīng)用的全局變量實現(xiàn)方法
- JSP使用過濾器防止Xss漏洞
- 在JSP頁面中動態(tài)生成圖片驗證碼的方法實例
- 詳解JSP 內(nèi)置對象request常見用法
- 使用IDEA編寫jsp時EL表達(dá)式不起作用的問題及解決方法
- jsp實現(xiàn)局部刷新頁面、異步加載頁面的方法
- Jsp中request的3個基礎(chǔ)實踐
- JavaServlet的文件上傳和下載實現(xiàn)方法
- JSP頁面的靜態(tài)包含和動態(tài)包含使用方法