quando coloco a seguinte tag na pagina JSP:
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
da o seguinte erro no navegador: HTTP Status 500 – Internal Server Error O que estou fazendo de errado, por favor? obrigado.
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Cadastro de Usuario</title>
</head>
<body>
<form action="/segundoEstudoJava/home.jsp" method="post">
Nome: <input type="text" name="nome" />
<input type="submit" />
</form>
</body>
</html>