Chinaunix首页 | 论坛 | 博客

acc

  • 博客访问: 792301
  • 博文数量: 170
  • 博客积分: 7011
  • 博客等级: 少将
  • 技术积分: 1660
  • 用 户 组: 普通用户
  • 注册时间: 2006-07-31 12:02
文章分类

全部博文(170)

文章存档

2014年(7)

2010年(2)

2009年(62)

2008年(25)

2007年(67)

2006年(7)

我的朋友

分类: Java

2007-11-29 13:04:34

第一个例子:
include-file-test-1.jsp:
<%@ page contentType="text/html;charset=GBK" %>
<%! String dec_str = "dec_str";%>
<%=dec_str%>

<%@ include file="include-file-test-2.jsp" %>

<%=dec_str%>
include-file-test-2.jsp:
<%@ page contentType="text/html;charset=GBK" %>
<%
 dec_str = "scr_str";    //Eclipse显示出错。
%>
结果:
dec_str
scr_str
结论:file1中定义的实例变量(或局部变量),file2可以引用并更改。但直接访问file2会出错。
 
第二个例子:
include-file-test-1.jsp:
<%@ page contentType="text/html;charset=GBK" %>
<% scr_str = "hello " + scr_str;%>
<%@ include file="include-file-test-2.jsp" %>
<%=scr_str%>

<% temp = "hello " + temp;%>
<%=temp%>
include-file-test-2.jsp:
<%@ page contentType="text/html;charset=GBK" %>
<%! String scr_str = "scr_str";%>
<% String temp = "temp"; %>
查看file1 对应的servlet:
package org.apache.jsp.jsp_002dsyntax_002dtest;
import ……;
public final class include_002dfile_002dtest_002d1_jsp …… {
 String scr_str = "scr_str";
  private static java.util.Vector _jspx_dependants;
  static {
    _jspx_dependants = new java.util.Vector(1);
    _jspx_dependants.add("/jsp-syntax-test/include-file-test-2.jsp");
  }
  public java.util.List getDependants() {
    return _jspx_dependants;
  }
  public void _jspService(HttpServletRequest request, HttpServletResponse response)
        throws java.io.IOException, ServletException {
        ……
    try {
          ……
          response.setContentType("text/html;charset=GBK");
         ……     
         scr_str = "hello " + scr_str;
         String temp = "temp";
         ……
         out.print(scr_str);
         temp = "hello " + temp;
         ……    
         out.print(temp);
    } catch (Throwable t) {
        ……    
    } finally {
     ……
    }
  }
}
结果:
hello scr_str
hello temp
结论:file2中定义的实例变量,file1可以在<%@ include file="" %>指令之前(或之后)引用并更改。
file2中定义的局部变量,file1必须在<%@ include file="" %>指令之后引用并更改。
 
第三个例子:
include-file-test-1.jsp:
<%@ page contentType="text/html;charset=GBK" %>
<%!
 String str1 = "str1 ";
%>
<%
 String str4 = str1 + str2 + str3;
%>
<%@ include file="include-file-test-2.jsp" %>
<%=str4%>
include-file-test-2.jsp:
<%@ page contentType="text/html;charset=GBK" %>
<%!
 String str2 = "str2 ";
 String str3 = str1 + str2;
%>
file1对应的servlet:
package org.apache.jsp.jsp_002dsyntax_002dtest;
import ……
public final class include_002dfile_002dtest_002d1_jsp ……{

String str1 = "str1 ";

 String str2 = "str2 ";
 String str3 = str1 + str2;
……
  public void _jspService(HttpServletRequest request, HttpServletResponse response)
        throws java.io.IOException, ServletException {
……

    try {
……
      response.setContentType("text/html;charset=GBK");
……
 String str4 = str1 + str2 + str3;
……
      out.print(str4);
    } catch (Throwable t) {
    ……
}

 
结果:
str1 str2 str1 str2
 
结论:file2并不生成servlet,但其中的内容都被包含在了file1生成的servlet之中;file2本身也被添加进名为“ _jspx_dependants”的Vector类型的类变量中。可以看到,在file2中定义的实例变量“scr_str ”被转移到了file1生成的servlet中。可见Tomcat是以一种很耐人寻味的机制进行处理的。
 
阅读(977) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~