I have a populated table with <c:foreach>
and in one of the colums I have a 'ALTER' I click on it and I load the information I want to change on another page. Already on the other page, the information I wanted to popular my select option according to the information I brought via ID.
EX : In my carregaModal
below I only bring 2 'Defensive' and 'Aggressive' things I wanted to already load with one or the other when load page.
${carregaModal.caracteristica
HTML
<div class="form-group">
<label>Característica</label>
<div>
<select name="caracteristica" class="form-control">
<option>Defensivo</option>
<option>Agressivo</option>
</select>
</div>
</div>