jspページタイミングリフレッシュの方法


1.Javascriptによるページ全体のリフレッシュ

function init(){
 
   var t=120; //      ,  : 
   var t1 = t * 1000;
   window.setInterval("refreshY()",t1);-----   t1   
}
function refreshY()
  {
     document.forms[0].action=<select:link page="/sysmain.do?method=init_head" />;
  document.forms[0].submit(); 
  }

そして
<body onload="init()">

これにより、ページ全体のリフレッシュが可能になります.
2.利用
<%
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<meta http-equiv="refresh"   content="1;url=<%=basePath%>again.do?method=init"> 
ページのリフレッシュも可能--ここでの1は秒