• 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

JspRuntimeLibrary Problem

 
Ranch Hand
Posts: 15304
6
Mac OS X IntelliJ IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am using Eclipse 2.1.1 with Lomboz211. I have a JSP file that looks like(minus all the misc html crap):

jsp:useBean id="addReferenceBean" class="com.gthought.reference.beans.AddReferenceBean" scope="request"/
jsp:getProperty name="addReferenceBean" property="type"/
(I had to leave out the greater than less than signs because UBB was converting them to HTML in the page and so nothing was visible)
And on the line of jsp:getProperty... when I save the file and Eclipse compiles the JSP, I am getting the following error message:
JspRuntimeLibrary cannot be resolved.
Does anyone know what this means and if it even has anything to do with Eclipse/Lomboz, or if I am having a JSP problem?
Thanks.
 
Ranch Hand
Posts: 2676
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm having the same problem on a page using the jsp:include tag. It appears to be a Lomboz problem because the page renders the way I expect it to.
 
Gregg Bolinger
Ranch Hand
Posts: 15304
6
Mac OS X IntelliJ IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Matt.
 
Gregg Bolinger
Ranch Hand
Posts: 15304
6
Mac OS X IntelliJ IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I wonder if this is a common problem. I have spent some time looking for a similar error on Google and can't find anything even close. It's just annoying to look at the console and see an error and not be able to do anything about it.
 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I solved the problem by going into the project properties within Eclipse, and adding jasper-compiler.jar and jasper-runtime.jar. If you don't have these jars, they come along with the Tomcat downloads.
reply
    Bookmark Topic Watch Topic
  • New Topic