• 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
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

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.
 
And then the flying monkeys attacked. My only defense was this tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic