今天在看书的时候看到一个关于用Jsp标签调用JavaBean 实现计数器功能的例子,我咋一看调用的顺序和最后的结果明显不符,就做了个小实验,并用debug模式跟踪调用的过程,结果果然证明文章中是错的,好了,不多废话了,下面是原文章中的实例代码:
Counter.java
package cn.xd.model; public class Counter { private long counter; public long getCounter(){ return counter; } public void setCounter(long counter){ this.counter=counter+1; } }Counter.jsp
<body> <jsp:useBean id="counter" scope="application" class="cn.xd.model.Counter" /> <% if(session.isNew()){ long temp=counter.getCounter();
counter.setCounter(temp);
}
%>
you are the <jsp:getProperty name="counter" property="counter"/><br/>person.
</body>
首先来说一下运行后的问题吧,首先解释一下Jsp代码,主要功能是掉用Javabean来实现计数功能的,但是你做实验你好发现,每次会话显示的都是0,当你用断点调试是你会发现在Counter.java代码的getCounter方法报错了,是out of synch,执行完getCounter后程序返回了,并没有执行Jsp中的counter.setCounter(temp);
现在来改正一下这段代码再看一下。
Counter.java
package cn.xd.model; public class Counter { private long counter; public void setCounter(){ counter++; } }Counter.jsp
<jsp:useBean id="counter" scope="application" class="cn.xd.model.Counter" /> <% if(session.isNew()){ counter.setCounter(); } %> you are the <jsp:getProperty name="counter" property="counter"/><br/>person. </body>
这你你再运行时结果就对了。
说明:我用的浏览器是火狐和Chrome,单打开一个窗口时不计数,原因是session生命周期也和cookie有关,必须重新打开浏览器才能计数。。
注意:
在web环境下调用Javabean一定要注意bean的作用范围,和特性。。