satheesh
satheesh

Reputation: 1451

how to use jstl library in eclipse

i tried to add taglib files in eclipse in j2ee dynamic web project and executed a small program

 <%@ page isErrorPage="true" %>
 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>

 <html>
 <head>
 <title>
 <c:out value="tata"></c:out>
 </title>
 </head>
 <body bgcolor="white">
 <h3>

  </h3>
  <p>
   </body>  
  </html>

Here i am getting

org.apache.jasper.JasperException: Failed to load or instantiate TagLibraryValidator class: org.apache.taglibs.standard.tlv.JstlCoreTLV

as an error can any one help

Upvotes: 0

Views: 1962

Answers (1)

Harry Joy
Harry Joy

Reputation: 59650

Try adding standard.jar in your project.

Upvotes: 3

Related Questions