Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using Tomcat 6.0 and getting the same red underline saying "Can not find the tag library descriptor for "http://java.sun.com/jsp/jstl/core"

I have the basic index.jsp file with the taglib uri as follows:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>

I have added the jstl-1.2.jar under both the Tomcat as well as my webapp folders

C:\...\apache-tomcat-6.0.35-windows-x64\apache-tomcat-6.0.35\webapps\ROOT\WEB-INF\lib
C:\...\workspace\<App-Name>\WebContent\WEB-INF\lib

My web.xml file looks as below with the web-app specifications as mentioned

<?xml version="1.0" encoding="UTF-8"?>

<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

I am still getting the red underlined error for tag library descriptor. Any ideas on what I am missing out ?

Thanks,

Somnath

share|improve this question

1 Answer

up vote 0 down vote accepted

To use tag libraries you need to add standard.jar and jstl.jar and add to your buildpath

get the jars from http://jstl.java.net/

share|improve this answer
I am using jstl-1.2 and web-app version 2.5 which does not require standard.jar – somnathchakrabarti Apr 4 '12 at 20:00
Anyway the problem got solved. I got help from a friend and he extracted the c.tld file from the jstl-1.2.jar and added it under a folder "/WEB_INF/tld/c.tld" and specified it in the taglib uri instead of the default "java.sun.com/jsp/jstl/core"; and it worked! – somnathchakrabarti Apr 4 '12 at 20:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.