I would like to refresh/reload my jsp page after a certain time interval. Consider the time interval is of 5 minutes.
How can achieve it?
In jsp add
<% response.setIntHeader("Refresh", time_in_second); //in your case 60*5=300 (for 5 min) %>
If you want to do it without using java code then Rahul Tripathi solution is the best as html tag will work perfectly in jsp.
Rahul Tripathi