where the generated jsp source file are stored?
Answers were Sorted based on User's Feedback
Answer / ravi ranjan
it store inside \Apache Group\Tomcat 4.1
\work\Standalone\localhost\your-context-name folder with
yor jspname_jsp.class
| Is This Answer Correct ? | 7 Yes | 1 No |
C:\Program Files\Apache Software Foundation\Tomcat 5.5\work\Catalina\localhost\webApplicationName\org\apache\jsp\xxx.java
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / sandeep m
depending on the webcontainer vendor the location of
generated source code may change. In case of Tomcat it will
be stored in work folder.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / anji
When we request for a jsp first time, it will generate a
Servlet, the generated servlet will compiles and creates
instances for the servlet.
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / sachin g.
After creation of jsp file, it is stored in the Web
directory (which is stored in the Webapplication as far as
Apache Tomcat 5.5 and Netbeans are concerned) , and after
successfully compiling it, the specific output will be
after running it.
| Is This Answer Correct ? | 0 Yes | 3 No |
What is the difference between encodeRedirectUrl and encodeURL?
What is the importance of init() method in Servlet ?
Explain the methods of request dispatcher in servlet?
how can we execute servelt? what the use ".war" or ".jar" file creation
How to work with Chinese login page (internationalization).if he enters user name and password in chinese, how is it converted to English and validate in db? And in reverse it should display welcome message in Chinese,if user is valid
How many ways are available to ger RequestDispatcher object?
Explain in detail about applet to servlet communication?
How do you run a servlet?
What do you mean by request dispatcher in servlet?
Explain the difference between a web server and a web container?
What is the need of session tracking in web application?
How to pass a requrest object of one servlet as a request object to another servlet?