jsp實現(xiàn)將動態(tài)網頁轉換成靜態(tài)頁面的方法
本文實例講述了jsp實現(xiàn)將動態(tài)網頁轉換成靜態(tài)頁面的方法。分享給大家供大家參考。具體如下:
如果我可以將jsp動態(tài)網頁轉換成靜態(tài)頁面,那么訪問的時候就不需要頻繁的訪問數(shù)據(jù)庫了。
jsp 顯示內容緩存技巧
前段時間做自己社區(qū)的論壇,在jive 的基礎上做一個頁面顯示所有論壇的帖子,可以稱之為總版,模仿forum 類的接口做個superforum 并且實現(xiàn)cachable,不過因為這個頁面刷新量比較大,雖然被cache 了,我還是想辦法進行頁面的緩存,感覺用jsp 產生的html靜態(tài)內容當緩存,頁面訪問速度應該有所提高。
首先想到的一種辦法,是采用java.net 的urlconnection 把服務器上的jsp 抓過來做緩存,不過我覺得這樣做太見外了,自己服務器上的東西,為何要用http 去訪問.于是想另外一個辦法,把jsp 的out 對象的輸出控制到自己希望的地方.比如輸出到靜態(tài)文件,又或者保存成全局的字符串變量.這樣的話,瀏覽就不需要執(zhí)行jsp,只是瀏覽該html 了.僅僅在數(shù)據(jù)有更新的時候進行一次update 操作,把jsp 重新輸出為html.
我覺得,瀏覽事件比數(shù)據(jù)插入或更新發(fā)生的次數(shù)多的時候.不妨試試這個辦法來提高頁面訪問速度.
整件事情有點像把jsp 當作模板,生成靜態(tài)的html 頁面.
將如下代碼寫入web-xml:
<filter> <filter-name>filecapturefilter</filter-name> <filter-class>com.junjing.filter.filecapturefilter</filter-class> </filter> <filter-mapping> <filter-name>filecapturefilter</filter-name> <url-pattern>/latest.jsp</url-pattern> </filter-mapping>
latest.jsp 是我要cache 的頁面
java 源碼代碼如下:
/** * start file filecapturefilter.java */
package com.junjing.filter;
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
public class filecapturefilter implements filter
{
private string protdirpath;
public void init(filterconfig filterconfig)
throws servletexception
{
protdirpath = filterconfig.getservletcontext().getrealpath("/");
}
public void dofilter(servletrequest request,servletresponse response,filterchain
chain)
throws ioexception, servletexception
{
string filename = protdirpath + "forum/lastest.html";
printwriter out = response.getwriter();
filecaptureresponsewrapper responsewrapper = new
filecaptureresponsewrapper((httpservletresponse)response);
chain.dofilter(request, responsewrapper);
// fill responsewrapper up
string html = responsewrapper.tostring();
//得到的html 頁面結果字符串
// responsewrapper.writefile(filename);
// dump the contents 寫成html 文件,也可以保存在內存
//responsewrapper.writeresponse( out );
// back to browser
//responsewrapper.sendredirect("lastestthread.jsp");
}
public void destroy() {}
}
/** * end file filecapturefilter.java */
/** * start file filecaptureresponsewrapper.java */
package com.junjing.filter;
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
public class filecaptureresponsewrapper
extends httpservletresponsewrapper
{
private chararraywriter output;
public string tostring()
{
return output.tostring();
}
public filecaptureresponsewrapper(httpservletresponse response)
{
super(response);
output = new chararraywriter();
}
public printwriter getwriter()
{
return new printwriter(output);
}
public void writefile(string filename)
throws ioexception
{
filewriter fw = new filewriter(filename);
fw.write( output.tochararray() );
fw.close();
}
public void writeresponse(printwriter out)
{
out.print( output.tochararray() );
}
}
/** * end file filecaptureresponsewrapper.java */
附件源代碼:
不過采用resin 服務器的話,以上代碼會失效。因為resin 沒有實現(xiàn)getwriter 方法,而是采用getoutputstream 取而代之,所以必須修改些代碼來迎合resin 運行環(huán)境:
/** * start file filecaptureresponsewrapper.java */
package com.junjing.filter;
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
public class filecaptureresponsewrapper
extends httpservletresponsewrapper
{
private chararraywriter output;
public string tostring()
{
return output.tostring();
}
public filecaptureresponsewrapper(httpservletresponse response)
{
super(response);
output = new chararraywriter();
}
public printwriter getwriter()
{
return new printwriter(output);
}
public void writefile(string filename)
throws ioexception
{
filewriter fw = new filewriter(filename);
fw.write( output.tostring());
fw.close();
}
public servletoutputstream getoutputstream()
throws java.io.ioexception
{
return new servletoutputstream();
}
public void write(int b)
throws ioexception
{
output.write(b);
}
public void write(byte b[])
throws ioexception
{
output.write(new string(b,"gbk"));
}
public void write(byte b[], int off, int len)
throws ioexception
{
output.write(new string(b, off, len));
}
};
}
public void writeresponse(printwriter out)
{
out.print(output.tochararray());
}
}
/** * end file filecaptureresponsewrapper.java */
希望本文所述對大家的JSP程序設計有所幫助。
相關文章
搭建Eclipse+MyEclipse開發(fā)環(huán)境
搭建Eclipse+MyEclipse開發(fā)環(huán)境...2007-02-02
JSP自定義標簽-標簽屬性_動力節(jié)點Java學院整理
對自定義標簽添加一些屬性,可以使我們的標簽功能更加靈活和復用。下面通過本文給大家分享JSP自定義標簽-標簽屬性的相關知識,感興趣的朋友一起看看吧2017-07-07
jsp中點擊圖片彈出文件上傳界面及實現(xiàn)預覽實例詳解
這篇文章主要介紹了jsp中點擊圖片彈出文件上傳界面及實現(xiàn)預覽實例詳解的相關資料,需要的朋友可以參考下2017-03-03
基于jsp+servlet實現(xiàn)的簡單博客系統(tǒng)實例(附源碼)
這篇文章主要介紹了基于jsp+servlet實現(xiàn)的簡單博客系統(tǒng),以完整實例形式分析了基于jsp+servlet簡單博客系統(tǒng)的原理與相關技巧,并附帶了完整源碼供讀者下載學習,需要的朋友可以參考下2015-09-09

