Struts2 $,#,%详解及实例代码
最近在学ssh,一直搞不懂$,%,#的区别,做了点小练习,慢慢也懂了一点,将自己所学的也记录下来吧。
存在一下一个实体entity:
public class person { private int id ; private string name ; public int getid() { return id; } public person(int id, string name) { super(); this.id = id; name = name; } public person() { super(); } public void setid(int id) { this.id = id; } public string getname() { return name; } public void setname(string name) { name = name; } }
在struts2的action中,写了如下代码:
@override public string execute() throws exception { //application person p = new person(1,"zhangsan") ; actioncontext.getcontext().getapplication().put("person", p); //session person p1 = new person(3,"wangwu"); actioncontext.getcontext().getsession().put("person", p1); //request person p2 = new person(2,"lisi"); actioncontext.getcontext().put("person", p2) ; //servletcontext person p3 = new person(5,"xiaoming"); actioncontext.getcontext().getcontextmap().put("person", p3); person p4 = new person(3,"wangwu"); actioncontext.getcontext().getvaluestack().push(p4); return "success"; }
分别在application,session,request,servletcontext,valuestack中存入一个person对象,那么在jsp中我们可以按照一下方式获取:
person: <input type="text" name="name" value="${person }" /><br /> id: <input type="text" name="name" value="${person.id }" /><br /> name: <input type="text" name="name" value="${person.name }" /><br /> <hr>
以上代码所得出的person信息时xiaoming的,即actioncontext.getcontext().getcontextmap()中存放的信息,通过查询$的用法,发现$获取对象的方式是有方式的,即
actioncontext.getcontext().getcontextmap() > actioncontext.getcontext() >actioncontext.getcontext().getsession() >actioncontext.getcontext().getapplication(),对于不同的scope(范围)中存在同名对象时,$的查找方式将会按照以上步骤进行,找到即输出,没有找到继续上一级查找,到顶不存在时将输出null。
那么$的用法为:${scope.object.attribute}
scope的属性值为request,session,application,默认不写时将按照上述所说的方案查找,找到即输出相关属性值。
在struts标签中,存一个这样的:
<s:property value="#application.person"/>
可以看出,此时用到了#号,个人认为,其实#和$的用法完全是一样的,只要你将需要输出的对象装进不同范围的map(servletcontext,request,session和application),在view中展示时,使用<s:property value="#scope.object.attribute">跟$理解完全是一样的。但是你在使用struts的标签时,比如:
<s:textfield name="person.name"></s:textfield>
完全可以理解为
<input type="text" name="persom.name" id="person.name" value="<s:property value="#person.name"/>" />
即struts的标签已经在html的text中给我们封装了<s:property value="#target.name"/>,可以给我省去很多代码的。
同理,那么#的用法为:<s:property value="#scope.object.attribute" />
当然完全可以使用struts2给我们定义的标签,这样完全可以省去写过多重复代码的麻烦。其实#还有其他的用法,比如用来构造map等对象,但是个人觉得在view中写过多代码的时代已经过去,这种用法已经没有太多的意义,况且这次我只写出在view展示的过程,因此其它地方不扯了。
最后,扯一点%的用法,简单的看,%{}就是字符串计算表达式,举个例子,view中存在某个环节,一般都存在crud等基本功能,对于add和uppdate功能,完全可以在同一个页面完成,不同的是我们提交的地址是不同的,比如可能只这样的:对于add方法,地址为user_add.action,对于udpate方法,地址为user_update.action,那么在form中,可以使用%进行判断:
<s:form action="user_%{ id == 0 ? 'add' : 'update' }"></form>
呵呵,这样以前的两个页面现在完全一个页面可以解决掉。
同理,%与struts中的if,ifelse等判断标签联合起来用得比较多,毕竟是比较的吗。。。。
<s:if test="%{false}"> <div>will not be executed</div> </s:if> <s:elseif test="%{true}"> <div>will be executed</div> </s:elseif> <s:else> <div>will not be executed</div> </s:else>
最后,说说这个%很有用的做法,假设存在一个列表展示student全部及格的成绩(即不及格的成绩将不会展示在上面),如果使用的%将是非常简单的。不扯,先上代码:
public class stduent implements java.io.serializable{ private static final long serialversionuid = -691038814755396419l; private int id ; private string name ; private int score ; private string subject ; public int getid() { return id; } public void setid(int id) { this.id = id; } public string getname() { return name; } public void setname(string name) { this.name = name; } public int getscore() { return score; } public void setscore(int score) { this.score = score; } public string getsubject() { return subject; } public void setsubject(string subject) { this.subject = subject; } /** * 此处判断成绩是否及格 * @param socre * @return */ public boolean ispast(int socre){ return getscore() > 60 ; } }
那么,现在数据库中查找学生成绩,放到list中暂时存放起来,在jsp页面,我们可以使用以下代码来控成绩制输出是否及格:
<s:iterator value="#alluser"> <!-- 判断是否过线,过线即输出,否则舍去! --> <s:if test="#session.user.ispast(score)"> name: <s:textfield name="name"></s:textfield> score: <s:textfield name="score"></s:textfield>\ subject:<s:textfield name="subject"></s:textfield> </s:if> </s:iterator>
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!