Tenho duas tabelas uma exibe e outra não, existe um modo que exiba a tabela que está no out.println e seus dados
<main>
<section>
<div class="position-relative overflow-hidden p-3 p-md-5 m-md-3 text-center bg-central">
<div class="col-md-8 p-lg-8 mx-auto my-5 bg-form" style="
padding-top: 15px;
padding-bottom: 5px;">
<div class="mb-3 ">
<b>Dados 2019</b>
<table class="table">
<thead>
<tr>
<th scope="col">Nome</th>
<th scope="col">Focos de incêndio</th>
<th scope="col">Percentual de queimadas</th>
</tr>
</thead>
<tbody>
<c:forEach items="${continentes}" var="continentes">
<tr>
<td><c:out value="${continentes.cdCont}" /></td>
<td><c:out value="${continentes.nomeCont}" /></td>
<td><c:out value="${continentes.populacaoCont}" /></td>
<td><c:out value="${continentes.tamanhoCont}" /></td>
<td><a href="ContinentesController?action=edit&cdCont=<c:out value="${continentes.cdCont}"/>">Editar</a></td>
<td><a href="ContinentesController?action=delete&cdCont=<c:out value="${continentes.cdCont}"/>">Apagar</a></td>
</tr>
</c:forEach>
</tbody>
</table>
<p><a href="ContinentesController?action=insert">Adicionar Continentes</a></p>
</div>
</div>
<%out.println(
"<div class='col-md-8 p-lg-8 mx-auto my-5 bg-form' style='padding-top: 15px;padding-bottom: 5px;'>"+
"<div class='mb-3 '>"+
"<b>Dados 2020</b>"+
"<table class='table'>"+
"<thead>"+
"<th scope='col'>Nome</th>"+
"<th scope='col'>Focos de incêndio</th>"+
"<th scope='col'>Percentual de queimadas</th>"+
"</thead>"+
"<tbody>"+
"<c:forEach items='${continentes}' var='continentes'>"+
"<tr>"+
"<td><c:out value='${continentes.cdCont}' /></td>"+
"<td><c:out value='${continentes.nomeCont}' /></td>"+
"<td><c:out value='${continentes.populacaoCont}' /></td>"+
"<td><c:out value='${continentes.tamanhoCont}' /></td>"+
"</tr>"+
"</c:forEach>"+
"</tbody>"+
"</table>"+
"</div>"+
"</div>"
);%>
</div>
</section>
</main>