Hi
Can anyone tell me? What are the advantages of JSP over Servlet?
Thanks in Advance
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jaganathan BantheswaranPosted Aug 11, 2011, 5:15 AM
1. JSP is actually converted into a servlet by the container.
2. JSP is usually used for displaying the data etc to the user whereas servlets are generally used for back end processing.
3. When a JSP is called for the very first time the response will be slow because of the process of converting it into a servlet and compiling. Thereafter it will be ok.