<form:form action="/editComment" method="post" class="form-horizontal" modelAttribute="commentEntity"> <form:textarea class="form-control" path="comment"/> </form:form> 

there is a form for editing a comment, how to set textarea using spring?
if you do this, the value does not display:

  <form:form action="/editComment" method="post" class="form-horizontal" modelAttribute="commentEntity"> <form:textarea class="form-control" path="comment" value="${comment}"> </form:form> 

if you do this: <form:textarea class="form-control" path="comment">${comment}</form:textarea> throws an error: [form: textarea] must be empty, but is not

0