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 don't know what I'd done incorrectly, but I can't include JSTL, I have jstl-1.2.jar but unfortunately I get exception:

org.apache.jasper.JasperException: The absolute uri: http://java.sun.com/jstl/core cannot be resolved in either web.xml or the jar files deployed with this application at org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:51) at org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:409) at org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:116) at org.apache.jasper.compiler.TagLibraryInfoImpl.generateTLDLocation(TagLibraryInfoImpl.java:315) at org.apache.jasper.compiler.TagLibraryInfoImpl.(TagLibraryInfoImpl.java:148) at org.apache.jasper.compiler.Parser.parseTaglibDirective(Parser.java:429) at org.apache.jasper.compiler.Parser.parseDirective(Parser.java:492) at org.apache.jasper.compiler.Parser.parseElements(Parser.java:1439) at org.apache.jasper.compiler.Parser.parse(Parser.java:137) at org.apache.jasper.compiler.ParserController.doParse(ParserController.java:255) at org.apache.jasper.compiler.ParserController.parse(ParserController.java:103) at org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:170) at org.apache.jasper.compiler.Compiler.compile(Compiler.java:332) at org.apache.jasper.compiler.Compiler.compile(Compiler.java:312) at org.apache.jasper.compiler.Compiler.compile(Compiler.java:299) at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:586) at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:317) at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342) at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267) at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:849) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583) at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:454) at java.lang.Thread.run(Thread.java:619)

I have:

pom.xml

  <dependency>
  <groupId>javax.servlet</groupId>
  <artifactId>servlet-api</artifactId>
  <version>2.5</version>
  <scope>provided</scope>
</dependency>
<dependency>
  <groupId>javax.servlet.jsp</groupId>
  <artifactId>jsp-api</artifactId>
  <version>2.1</version>
  <scope>provided</scope>
</dependency>

<dependency>
  <groupId>taglibs</groupId>
  <artifactId>standard</artifactId>
  <version>1.1.2</version>
</dependency>
<dependency>
  <groupId>javax.servlet</groupId>
  <artifactId>jstl</artifactId>
  <version>1.2</version>
</dependency>

web.xml

<web-app 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"
  version="2.5">

index.jsp

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

<html>

<head>
</head>

<body>

</body>
</html>

edited: To solve this problem: add jstl.jar into WEB-INF/lib. Make sure whether your webapp has jstl.jar in your WAR.

share|improve this question
I had to add the taglibs depdendency too beside the jstl and just worked. – Christian Vielma Jan 30 at 17:00

4 Answers

up vote 17 down vote accepted

That URI is for JSTL 1.0. But your POM specifies JSTL 1.2, which uses URI's with a "/jsp" in them:

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

I however assume that Maven or you did put the JSTL JAR file in the /WEB-INF/lib as described in your question.

See also:

UPDATE you can download JSTL 1.2 From JSTL1.2

share|improve this answer
I've changed to /jsp and: org.apache.jasper.JasperException: The absolute uri: java.sun.com/jsp/jstl/core cannot be resolved in either web.xml .... – smas Feb 8 '11 at 0:28
1  
Then your classpath is a mess. Cleanup it. I don't know what maven is doing and whether it's smart, but for JSTL 1.2 you do not need the standard taglib. Read the tag info page for more detail. – BalusC Feb 8 '11 at 0:30
1  
+1 very helpful advice – smas Oct 5 '11 at 22:52
3  
I really like the JSTL wiki page that you put together. However, since this question is the top hit from Google for the particular error message, I'm taking the liberty to edit it and note that the "non-jsp" URI is from JSTL 1.0. – kdgregory Mar 8 '12 at 15:31
1  
@kdgregory: Thank you :) – BalusC Mar 8 '12 at 18:59
show 2 more comments

@BalusC is completly right, but If you still encounter this exception, it's mean that something you have done wrong. The most important informations you will find here.

Basically this is summary what you need to do to deal with this exception.

  1. Check servlet version in web.xml: <web-app version="2.5">

  2. Check if JSTL version is supported for this servlet version: 2.5->1.2 JSTL or 2.4->1.1 JSTL

  3. Your servlet container must have appropriate library or you must attach manually to your application. For example: JSTL 1.2 requires jstl-1.2.jar

What with Tomcat 5 or 6:

You need to include appropriate jar(s) into your WEB-INF/lib directory (it will work only for this application) or to the tomcat/lib (will work globally).

The last thing is a taglib in your jsp files. For JSTL 1.2 correct one is this:

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
share|improve this answer
1  
I've noticed that this question is quite popular (many viewers). So this is why I had decided to write short tutorial how to deal with this problem – smas Oct 5 '11 at 20:15

you must have standard.jar and jstl.jar in you lib directory

share|improve this answer

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.