
How to include the same jsp page dynamically to a number of times automatically.

You can use include page directive. Here is a jsp code that calls the same jsp page using include directive.
PageDir_Example.jsp
<html>
<head><title>Include Directive JSP Page.</title></head>
<body>
<%@include file="PageDir_Example.jsp" %><br/>
<font size="10"><%="Hello World!" %></font><br/>
<jsp:include page="PageDir_Example.jsp" />
</body>
</html>
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.