标签:
通过设置scope得到不同作用域的对象。
例如:
<jsp:useBean id="beanTest" class="com.BeanTest" scope="session"/>
可以通过三种方式取值
1.<jsp:getProperty name="beanTest" property="num">
2.El表达式 ${sessionScope.beanTest.num}
3. ((BeanTest)session.getAttribute("beanTest")).getNum();
对于Session作用域的Bean,感觉在其他JSP页面中,应该也能取到。但是我试的不行,可能是有地方出错了。
标签:
原文地址:http://blog.csdn.net/s517515435/article/details/43242763