How are Servlets and JSP Pages related?
Answers were Sorted based on User's Feedback
Answer / janet
Jsp pages are focussed around HTML (or XML) with java codes
and JSP tags inside them.When a web server that has JSP
support is asked for a JSP page,it checks to see if it has
already compiled the page into a servlet.Thus ,JSP pages
become servlets and are transformed into pure Java and then
compiled,loaded into the server and executed.
Is This Answer Correct ? | 6 Yes | 1 No |
Answer / ambika
Relationof servlet and JSP is
RequestDispatcher reqdip=req.RequestDispatcher("sum.jsp");
forward.req(req,res)
Is This Answer Correct ? | 3 Yes | 6 No |
Is jsp compiled?
How to deactivate el usage on jsp?
What is the different between servlet and struts
What is full api?
How do I include static files within a jsp page?
What is the use of jsp implicit objects?
What is taglibs?
Are dialogue tags necessary?
How does jsp engines instantiate tag handler classes instances?
Why use of scripting elements in jsp is discouraged?
Differentiate between jsp scriptlet tag and declaration tag.
How to create menu in jsp with example?