(3)采用;
该方法是利用服务器端先将数据输出到缓冲区的机制,在把缓冲区的内容发送到客户端之前,原来的不发送,改为发送该页面的内容,如果在之前有很多输出,前面的输出已使缓冲区满,将自动输出到客户端,那么该语句将不起作用,这一点应该特别注意.;
如下面的例子中(1)会输出index.html的内容,(2)不会输出index.html的内容,而是输出out.println("@@@@@@@@@@@@@@@@@");
中的内容,并且在服务端会抛出:java.lang.IllegalStateException: Response already committed 异常,但客户端没有任何错误输出。
(1);
<%@page buffer="1kb"%>;
<%;
long i=0;;
for(i=0;i<10;i++);
{;
out.println("@@@@@@@@@@@@@@@@@");;
};
%>;
(2);
<%@page buffer="1kb"%>;
<%;
long i=0;;
for(i=0;i<600;i++);
{ ;
out.println("@@@@@@@@@@@@@@@@@");;
};
%>;
说明:;
1. 方法(1),(2)可以使用变量表示重定向的地址;方法(3)不能使用变量表示重定向的地址。;
String add="./index.html";;
无法重定向到index.html中去;
String add=http://localhost:7001/index.html;
response.sendRedirect(add);;
可以重定向到http://localhost:7001/index.html中去。;
2. 采用方法(1),(2)request中的变量(通过request.setAttribute()保存到request中的值)不能在新的页面中采用,采用方法(3)能.;
综上,我们应该采用(1),(2)重定向比较好。;
四、JSP中正确应用类;
应该把类当成JAVA BEAN来用,不要在<% %> 中直接使用. 如下的代码(1)经过JSP引擎转化后会变为代码(2):;
从中可看出如果把一个类在JSP当成JAVA BEAN 使用,JSP会根据它的作用范围把它保存到相应的内部对象中.;
如作用范围为request,则把它保存到request对象中.并且只在第一次调用(对象的值为null)它时进行实例化.;
而如果在<% %>中直接创建该类的一个对象,则每次调用JSP时,都要重新创建该对象,会影响性能.;
代码(1);
<%;
test.print("this is use java bean");;
testdemo td= new testdemo();;
td.print("this is use new");;
%>;
代码(2);
demo.com.testdemo test = (demo.com.testdemo)request.getAttribute("test"); ;
if (test == null) ;
{ ;
try ;
{ ;
test = (demo.com.testdemo) java.beans.Beans.instantiate(getClass().getClassLoader(),"demo.com.testdemo"); ;
} ;
catch (Exception _beanException) ;
{;
throw new weblogic.utils.NestedRuntimeException("cannot instantiate 'demo.com.testdemo'",_beanException); ;
} ;
request.setAttribute("test", test); ;
out.print("\r\n");;
} ;
out.print("\r\n\r\n\r\n");;
test.print("this is use java bean"); ;
testdemo td= new testdemo();;
td.print("this is use new");;
标签: