aspose file tools
The moose likes Servlets and the fly likes JSP Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Servlets
Reply Bookmark "JSP " Watch "JSP " New topic
Author

JSP

Usha KV
Greenhorn

Joined: Jun 05, 2001
Posts: 4
Where is the servlet class file stored physically after the JSP page is compiled to a servlet
Frank Carver
Sheriff

Joined: Jan 07, 1999
Posts: 6913
It's entirely up to the servlet/JSP container. it may not even be stored psically on disk, but only exist in memory or maybe in a database or other repository.
Which servlet /JSP container are you using ?


A Convergent Visionary ~ Frank's Punchbarrel Blog ~ LinkedIn profile
Ganesh Anekar
Ranch Hand

Joined: May 13, 2001
Posts: 36
Hello,
In Javawebserver , If u compile JSP file , for that JSP file the generated servlet will be actually stored in Javawebser's tmp Directory.
U check in c:\javawebserver\tmp\pagecompile\jsp\_yourjsp
it will generate Three files 1) .java file of u r Jsp file
2).class for that java file and 3).dat file for that class
U can open .java file with any editor..
Check it...
Ganesh
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: JSP
 
Similar Threads
attributes and listener hfsj question 10
Do you have elegant way of nullpointer exceptions
Scriptlets -> Time and Space Complexity
difference
is servlet and jsp same?