Можно ли проверить, был ли атрибут добавлен в модель?
//in the controller teh variable is not always added
//
model.addAttribute("variable", myVariable);
и в jsp что-то вроде этого
<c:choose>
<c:when test="${variable is present}">
Not present
</c:when>
<c:otherwise>
Present
</c:otherwise>
</c:choose>
Спасибо