On the form there are many elements that are formed in a dynamic way.
<table class="table"> <c:forEach var="row" items="${rs0.rows}"> <c:set var="SIGNIFICATIVE" value="${row.SIGNIFICATIVE}"/> <c:set var="ID_SIGNIFICATIVE" value="${row.ID_SIGNIFICATIVE}"/> <tr> <td> <input type="checkbox" id="${ID_SIGNIFICATIVE}" NAME="CHECKBOX_${ID_SIGNIFICATIVE}"></td> <td style="width:50%">${SIGNIFICATIVE}</td> <td><div class="input-group"><input type="text" class="form-control" id="${ID_SIGNIFICATIVE}" NAME="TEXT_${ID_SIGNIFICATIVE}" > <span class="input-group-addon">,%</span> </div></td> </tr> </c:forEach> </table>
Further information from these form elements must be entered into the database. Tell me the method by which it is possible to get a list of modified form elements.