• 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

Class loading

 
Greenhorn
Posts: 22
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello All
I have a utility class which has lot of static methods along with a static initialized. This static class is being used from the jsp.I changed the static class by changing the name of a method and recompiled it. Correspondingly, i changed the jsp to reflect the new method. Ironically, the jsp was giving reporting method not found all the time. I got rid of the static initializer and the display the static initializer is still getting printer. I tried stoping the server (Weblogic) and starting it back many times but still the old version is the one that is loaded.
Can any one help me whats happening and what i can do to correct this problem
Thanks a bunch
Chandar
 
Greenhorn
Posts: 14
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This is what I would try with JRun. Find the compiled corresponding .class file for that jsp and delete it. This should force Weblogic to recompile your .jsp.
 
reply
    Bookmark Topic Watch Topic
  • New Topic