如何将jsp和shtml结合是运用?

如何将jsp和shtml结合是运用?

我想在要完成的是将整个jsp网站静态化,想要用包含多个页面的方法来做
但是shtml我不太会~~~
我用的开发工具时MyEclipse,但是我甚至没有找到如何新建一个shtml文件
到底应该怎么将jsp和shtml结合使用的啊?
请哪位高手解答一下啊?
我刚刚看到用注释在html里写
<!-- <#include file="index.jsp"> -->
是这样吗?
我用的tomcat5.5我已经将web.xml里的几个注释去掉了
然后,把那什么后缀名也改成了jar
然后,我用来测试的两个文件:
一、aaa.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <title>aaa.html </title>

    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="this is my page">
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
   
    <!-- <link rel="stylesheet" type="text/css" href="./styles.css">-->

  </head>
 
  <body>
    <!--#include file="index.jsp"-->
    <br>
  </body>
</html>

------------------------------------------------------------------
二、index.jsp
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href=" <%=basePath%>">
   
    <title>My JSP 'index.jsp' starting page </title>
   
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">   
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->

  </head>
 
  <body>
    Tomorrow is another day! <br>
  </body>
</html>

但是运行aaa.html却没有显示
是一个空白页
为什么啊??
哪位高手指教一下我呀·~!!!!
ToT
我哭,真的没有人可以回答我吗???
我急啊!!!
我主持的中国灯饰商贸网(www.lighting86.com.cn)实施了网站的静态化,静态化率高达99%,极大的降低了系统对后端数据库的压力,
提高了页面的刷新速度。
我这里静态化的一个最大的亮点是对分页也最了静态化处理。考虑到i/o的问题,我这里只是静态化了前10页。后台的未静态化的,我都
加了缓存,所以,速度还是很快的。