|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
前些天,在CSDN上看到了一个消息,说是ASP.NETAJAX成功在Linux上运行,这一点对我触动很大,而且引发了我许多感叹,所以想写出来分享一下。
利用sitemesh创建复合视图-1.hello
(作者:chen-neu,供应给huihoo.com公布)
利用sitemesh创建复合视图-1.hello<-now
利用sitemesh创建复合视图-2.粉饰器
利用sitemesh创建复合视图-3.别的会商
sitemesh是opensymphony团队开辟的j2ee使用框架之一,旨在进步页面的可保护性和复用性。opensymphony的另外一个广为人知的框架为webwork是用作web层的暗示框架。他们都是开源的,能够在www.sf.net下找到。
使用于以下年夜项目标例子:http://opensource.thoughtworks.com/projects/sitemesh.html
www.jboss.orgwww.theserverside.comwww.opensymphony.comwww.atlassian.com简介:sitemesh使用Decorator形式,用filter截取request和response,把页面组件head,content,banner分离为一个完全的视图。一般我们都是用include标签在每一个jsp页面中来不休的包括各类header,stylesheet,scriptsandfooter,如今,在sitemesh的匡助下,我们能够高兴的删失落他们了。以下图,你想轻松的到达复合视图形式,那么看完本文吧。
hellositemesh:在WEB-INF/web.xml中copy以下filter的界说:
<filter><filter-name>sitemesh</filter-name><filter-class>com.opensymphony.module.sitemesh.filter.PageFilter</filter-class></filter><filter-mapping><filter-name>sitemesh</filter-name><url-pattern>/*</url-pattern></filter-mapping><taglib><taglib-uri>sitemesh-decorator</taglib-uri><taglib-location>/WEB-INF/sitemesh-decorator.tld</taglib-location></taglib><taglib><taglib-uri>sitemesh-page</taglib-uri><taglib-location>/WEB-INF/sitemesh-page.tld</taglib-location></taglib>
copy所需jar和dtd文件至响应目次,会见opensymphony.sourceforge.net的cvs以猎取sitemesh最新版本。sitemesh.jarWEB-INF/libsitemesh-decorator.tldWEB-INFsitemesh-page.tldWEB-INF创建WEB-INF/decorators.xml形貌各粉饰器页面(可模仿sitemesh例子)。
<decoratorsdefaultdir="/_decorators"><decoratorname="main"page="main.jsp"><pattern>*</pattern></decorator></decorators>
创建粉饰器页面/_decorators/main.jsp
<%@pagecontentType="text/html;charset=GBK"%><%@tagliburi="sitemesh-decorator"prefix="decorator"%><html><head><title><decorator:titledefault="粉饰器页面..."/></title><decorator:head/></head><body>sitemesh的例子<hr><decorator:body/><hr>chen56@msn.com</body></html>
创建一个的被粉饰页面/index.jsp(内容页面)
<%@pagecontentType="text/html;charset=GBK"%><html><head><title>AgentTest</title></head><body><p>本页只要一句,就是本句.</p></body></html>
最初会见index.jsp,将天生以下页面:
并且,一切的页面也会好像index.jsp一样,被sitemesh的filter利用粉饰形式修正成如上图般容貌,却不必再利用include标签。
Java伴随着互联网的迅猛发展而发展,逐渐成为重要的网络编程语言。Oracle收购Sun后Java前途未卜。 |
|