Solucionado (ver solução)
Solucionado
(ver solução)
2
respostas

Can not find the tag library descriptor for "http://java.sun.com/jsp/jstl/core"

<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <%@ page import="java.util.List, br.com.link.gerenciador.servlet.Empresa"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>

Lista de empresas tag lib:
<ul>
    <c:forEach items="${empresas}" var="empresa">
        <li>${empresa.nome}</li>            
    </c:forEach>
</ul>
2 respostas

Vlw obrigado.