I got this job and I had to find this page again to provide my answer.
<form>, . , name .
, JQuery /. , , JQuery, , , .
, DOM, . JSP .
<c:forEach var="points" items="${configuration.pointsValueMap}" varStatus="index">
<div class="col-xs-3 ">
<label for="pointMap[${index.index}]">Type:</label>
<input type="text" id="pointMap[${index.index}]" class="pointMap" value="${points.key}"> :
</div>
<div class="col-xs-3 ">
<label for="pointMap[${index.index}]-value">Value:</label>
<input type="text" id="pointMap[${index.index}]-value" name="pointsValueMap[${points.key}]" value="${points.value}">
</div>
</c:forEach>
JS, .
$('form').on('change', 'input.pointMap', function(){
var content = $(this).val();
var id = $(this).attr('id');
$(this).parent().next().children('input').attr('name', 'pointsValueMap['+content+']');
$('#'+id+'-value').attr('name', 'pointsValueMap['+content+']');
});