• 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

find equivalent java file for a jsp in weblogic

 
Ranch Hand
Posts: 215
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

Where to find equivalent java file for a jsp in weblogic. My JSP is thwoing nullpointerexception. It says __results.java :969
I want to find out this line 969 in equivalent jsp class.

Thanks in advance.
 
Ranch Hand
Posts: 147
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
As I recall, I think the first thing you need to do is ensure in your weblogic.xml descriptor the following value is set
<jsp-descriptor>
<keepgenerated>true</keepgenerated>
</jsp-descriptor>

So that the java src files for the jsps are saved.

I can't remember exactly where it saves them, but somewhere under user_projects/domains/yourdomain/servers/yourserver/tmp/_WL_user/yourappname/
seems to ring a bell.
Look for a sub-dir named jsp_servlet a a dir or two below that,

Cheers!

oh almost forgot, you can specify keepgenerated at the app config in the WL10 console as well.

And, the root level package can be defined as well (aka directory), just defaults to jsp_servlet I think.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic