Problema Com JSP Spring MVC. Multiple annotations found at this line: Undefined attribute name

  1. Saudações pessoal, estou a estudar caelum web-fj21 e estou tendo seguinte erro na linha 14 do JSP abaixo
    Multiple annotations found at this line:

    • Undefined attribute name
      (tarefa.finalizado).
  2. <%@ taglib prefix=“fmt” uri=“http://java.sun.com/jsp/jstl/fmt” %>

  3. Alterar tarefa - ${tarefa.id}

  4. Descrição:

  5. <%–

  6. –%>${tarefa.descricao}<%–

  7. –%>


  8. Finalizado? <input type=“checkbox” name=“finalizado”

  9. value=“true” ${tarefa.finalizado? ‘checked’ : ‘’ }/>

  10. Data de finalização:

  11. <input type=“text” name=“dataFinalizacao”

  12. value="<fmt:formatDate

  13. value="${tarefa.dataFinalizacao.time}"

  14. pattern=“dd/MM/yyyy” />"/>


Alguem ajuda-me?