what is the difference between servlets and jsp?
Answers were Sorted based on User's Feedback
Answer / sanjay deorari
JSP is used mainly for presentation only. A JSP can only be
HttpServlet that means the only supported protocol in JSP is
HTTP. But a servlet can support any protocol like HTTP,FTP,
SMTP etc.
| Is This Answer Correct ? | 15 Yes | 4 No |
Answer / j
in Servlet, presentation logic(HTML) is embedded in java
code (between out.println()). whereas in JSP, javacode is
embedded within HTML.
one more thing is while compilation, servlets will compile
and form .class file. whereas JSP will undergo a
translation phase. During which its converted into Servlet
first and the compiled to .class file.
| Is This Answer Correct ? | 13 Yes | 4 No |
What do you mean by the deployment descriptor?
What do you understand by business logic?
What are the components of j2ee?
Which implicit object in jsp is synchronized?
Describe the file types *.ear, * .jar and *.war?
Can u give me sample code for ServiceImpl and DaoImpl, in j2ee .
What is bean factory, have you used xmlbean factory?
Define hashtable in j2ee?
What do you understand by connector? Explain connector architecture.
Why is java more secure?
Difference between treemap & sortedset
What is home interface?