スプリングにエラーがあるエラー ボックスを表示する最良の方法を見つけようとしています。
問題の各フィールドの下にそのエラーを表示するのが好きです。以下は私のコードですが、他の方法で簡単になると思いますか?
<c:set var="validationErrorsContent"><form:errors path="content"/></c:set>
<c:if test="${not empty validationErrorsContent}">
<font color="red">
<div id="error" class="error">
<form:errors path="content" cssClass="error" />
</div>
</font>
</c:if>