|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
到时我们不用学struts,不用学spring,不用学Hibernate,只要能把jsf学会了,完全可以替代所有的框架,包括AJAX,都知道AJAX并不是新技术,虽说我没深入学习jsf但我认为jsf应该已经能通过其它技术替代AJAX,实现无缝刷新。条记1.<html:html>
<html:htmllang="true">
</html:html>
=>转为Html后(下同):
<htmllang="zh-CN">
</html>
2.<html:base/>
<html:base/>
=>
<basehref="http://localhost/AddressBook/regGuest.jsp">
//本页面的相对地点
3.<html:link>
<%
Stringcheyo="hehehe";
pageContext.setAttribute("coolName",cheyo);
%>
<html:linkforward="success"paramId="name"paramName="coolName">乐成页面</html:link><p/>
<html:linkpage="/here.jsp?bigId=3&smallId=7">Here</html:link><p/>
<html:linkhref="http://www.csdn.net"paramId="name"paramName="coolName">CSDN首页</html:link><p/>
=>
<ahref="/AddressBook/hello.jsp?name=hehehe">乐成页面</a><p/>
<ahref="/AddressBook/here.jsp?bigId=3&smallId=7">Here</a><p/>
<ahref="CSDN>http://www.csdn.net?name=hehehe">CSDN首页</a><p/>
/*
<html:linkforward="success"paramId="bookName"paramName="name"
paramProperty="book"></html:link>//用book这个JavaBean的name属性的值作为名为bookName参数的值
<html:linkpage="hello.jsp"name="map"></html:link>//map有一个HashMap对象,能够以于传送一个参数名多个参数值
*/
4.<html:rewrite>
<%
Stringcheyo="hehehe";
pageContext.setAttribute("coolName",cheyo);
%>
RewriteForward:<html:rewriteforward="success"paramId="name"paramName="coolName"/><p/>
RewritePage:<html:rewritepage="/here.jsp?bigId=5&smallId=3"/><p/>
RewriteHref:<html:rewritehref="http://www.csdn.net"paramId="name"paramName="coolName"/><p/>
=>
RewriteForward:/AddressBook/hello.jsp?name=hehehe<p/>
RewritePage:/AddressBook/here.jsp?bigId=5&smallId=3<p/>
RewriteHref:http://www.csdn.net?name=hehehe<p/>
5.<html:img>
<html:imgpage="http://www.webjx.com/struts.gif"/><p/>/*相对Web使用根目次*/
<html:imgsrc="http://www.webjx.com/struts.gif"paramId="name"paramName="coolName"/><p/>/*相对服务器根目次*/
<html:imgpage="http://www.webjx.com/struts.gif?name=oyeah"/><p/>
=>
<p/>
<imgsrc="/AddressBookhttp://www.webjx.com/struts.gif?name=oyeah"><p/>
在性能方面,在windows平台下,.net可能是占强项,要是把.net放在sun开发的操作系统上去运行呢?根本就运行不了,.net对其它操作系统的支持也很弱,性能也可能比不上java。 |
|