我在 JSP 中有以下代码,每次用户访问该页面时都会重复运行。所有访问者的数据库结果值都是相同的。该页面采用参数“服务”,并基于它执行 SQL 查询。第二个 SQL 查询是根据第一个查询生成的“id”执行的。如果有 20 个不同的服务,它会运行以下查询 20 次,然后只显示页面。那么,有什么方法可以临时存储这些结果(使用缓存或其他东西),以便这些查询只运行一次/第一次访问,然后对于其他请求不进行数据库请求?这样页面加载速度非常快,并且不消耗任何 cpu/内存。我只能在 JSP 中执行此操作,并且拥有 apache tomcat 6。
================= EDITED PART================
我通过实现 application.getAttribute()/setAttribute() 找到了第一个解决方案。
if(application.getAttribute(service)==null
{
//do first query
application.setAttribute(service,name);
}
else name=application.getAttribute(service);
现在如何在第二个查询中使用 id 参数???请指教..
=============================================
String service=request.getParameter("service");
sqlstr = "SELECT uniqueid,name,body FROM tbl_texts WHERE
serviceunique='"+service+"' AND webdomain='" + webdomain + "'";
rs = DbUtils.getRs(con,sqlstr);
if (rs.next()) {
id = rs.getString("uniqueid");
name = rs.getString("name");
body=rs.getString("body");
}
rs.close();
sqlstr = "SELECT animage,awidth,aheight FROM tbl_Images WHERE
uniqueid='" + id + " AND profile='" + imageprofile + "'";
rs = DbUtils.getRs(con,sqlstr);
if (rs.next()) {
images = rs.getString("animage");
size= (int) (rs.getDouble(awidth) * rs.getDouble(rs.getDouble(aheight) )
rs.close();
提前致谢!