专注于互联网--专注于架构

最新标签
网站地图
文章索引
Rss订阅

首页 »博文摘选 » jspjavabean:有关JSP中JavaBean的Scope属性 »正文

jspjavabean:有关JSP中JavaBean的Scope属性

来源: 发布时间:星期六, 2009年10月3日 浏览:4次 评论:0

测试application和request:

1.包:

package ScopeTest;

/**
 *
 * @author lucifer
 */
public class TestScope {
     private int i;
     public TestScope(){
          i = 0;
     }
     public int getNextInt(){
          return ++i;
     }
}

2.JSP代码:

<%--
    Document   : TestScope
    Created on : 2009-10-3, 14:29:18
    Author     : lucifer
--%>

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd">


<jsp:useBean id="reqScope" class="ScopeTest.TestScope" scope="request"/>
<jsp:useBean id="appScope" class="ScopeTest.TestScope" scope="application"/>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>JSP Page</title>
    </head>
    <body>
        Application Scope:
        <jsp:getProperty name="appScope" property="nextInt"/>
        <br>
        Request Scope:
        <jsp:getProperty name="reqScope" property="nextInt"/>
        <form method="get" action="TestScope.jsp">
               <input type="submit" value="Reget">
        </form>
    </body>
</html>

3.输出:

Application Scope: 1
Request Scope: 1

按下按钮后输出:

Application Scope: 2
Request Scope: 1

0

相关文章

读者评论

发表评论

  • 昵称:
  • 内容: