サーバーへの負荷を軽減するために、当初の記事管理システムは、JSP ファイルを介してデータベースからデータを取得する方式から、jsp を介して静的 HTML ファイルを生成した後、HTML ファイルに直接アクセスする方式に変更されました。以下は簡単な例です。
1.buildhtml.jsp
<%@ page contentType="text/html; charset=gb2312" import="java.util.*,java.io.*"%>
<%
試す{
文字列 title="これはタイトルです";
String content="これはコンテンツ領域です";
文字列エディター = "LaoMao";
文字列ファイルパス = "";
ファイルパス = request.getRealPath("/")+"test/template.htm";
//out.print(ファイルパス+"<br>");
文字列 templateContent="";
FileInputStream fileinputstream = new FileInputStream(filePath);//モジュール ファイルを読み取ります
int length = fileinputstream.available();
バイト bytes[] = 新しいバイト[長さ];
ファイル入力ストリーム.読み取り(バイト);
ファイル入力ストリーム.close();
templateContent = 新しい文字列(バイト);
//out.print(templateContent);
templateContent=templateContent.replaceAll("###title###",title);
templateContent=templateContent.replaceAll("###content###",content);
templateContent=templateContent.replaceAll("###author###",editor);//モジュール内の対応する場所を置き換えます
//out.print(templateContent);
// 時刻に基づいてファイル名を取得します
カレンダー Calendar = Calendar.getInstance();
String fileame = String.valueOf(calendar.getTimeInMillis()) +".html";
fileame = request.getRealPath("/")+fileame;//生成されたHTMLファイルの保存パス
FileOutputStream fileoutputstream = new FileOutputStream(fileame);//ファイル出力ストリームを作成する
バイトtag_bytes[] = templateContent.getBytes();
fileoutputstream.write(tag_bytes);
ファイル出力ストリーム.close();
}
catch(例外 e){
out.print(e.toString());
}
%>
2. template.htm
<html>
<頭>
<title>###title###</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<LINK href="../css.css" rel=stylesheet type=text/css>
</head>
<body>
<table width="500" border="0" align="center" cellpadding="0" cellpacing="2">
<tr>
<td align="center">###title###</td>
</tr>
<tr>
<td align="center">著者:###著者### </td>
</tr>
<tr>
<td>###コンテンツ###
</td>
</tr>
</table>
</body>
</html>