• 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

compilation issues in jsp when tring to access a class

 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I am using weblogic7, I wrote small jsp page, which will creates an instance of a class available in WEB-INF\classes folder or in a jar file within WEB-INF\lib folder. I am getting the following error.

Compilation of 'D:\bea\user_domains\mydomain\myserver\.wlnotdelete\DefaultWebApp_DefaultWebApp_2712170\jsp_servlet\__test.java' failed:
--------------------------------------------------------------------------------
D:\bea\user_domains\mydomain\myserver\.wlnotdelete\DefaultWebApp_DefaultWebApp_2712170\jsp_servlet\__test.java:87: cannot resolve symbol
probably occurred due to an error in /test.jsp line 2:
Test t=new Test();

D:\bea\user_domains\mydomain\myserver\.wlnotdelete\DefaultWebApp_DefaultWebApp_2712170\jsp_servlet\__test.java:87: cannot resolve symbol
probably occurred due to an error in /test.jsp line 2:
Test t=new Test();

Please help me in resolving this.

Thanks
Venkata.
 
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
Did you read the JSP FAQ on this issue?
 
reply
    Bookmark Topic Watch Topic
  • New Topic