• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

The absolute uri error

 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Please help me out with this problem.

I'm getting the error:
org.apache.jasper.JasperException: The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar files deployed with this application

Here is what i'm doing in JSP page:




I'm using JSTL(jstl-1.2.jar), jdk1.6, Tomcat 7, and Eclipse Indigo SR2.
All the jar files under Tomcat are in the BuildPath.
Might be I'm making mistake while adding the jar file to the build path in eclipse ide. So here is what i'm doing to add the jar in ide:
1. Java build path.
2. Under Libraries "Add External Jar".
3. After that Under "Order and Export" selecting the jar(don't know is it necessary or not but still doing).

Any suggestion what i'm doing wrong?
 
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The build path is not enough. The jar file must also end up in WEB-INF/lib at run time, Ive moved this to the IDEs for for the eclipse-savvy to aid you in this.
 
Tushar Bhujbal
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
@ Bear : Thank you. I had read this suggestion in some forum but don't know why I was not able to paste any jar files in WEB-INF/lib folder.
Even the application folder was not visible from Windows Explorer. I was able to see that folder only thorugh Eclipse.
But it worked out now. Thank you again.
reply
    Bookmark Topic Watch Topic
  • New Topic