whats the diff between jsp and servlets?
Answer Posted / rajashree
Both use server-side Java to dynamically generate web
pages. The source code to a JSP looks like HTML, with Java
embedded inside funny tags (*); the source code to a
servlet looks like Java, with HTML embedded in out.print
(...) statements. Both use the Servlet API to communicate
with the web server and the client. In fact, a JSP gets
compiled into a servlet, so they're almost identical in
terms of expressive power. The choice is, whether you're
more comfortable coding your pages in Java or in JSP-style
HTML; and since you can call a JSP from a Servlet and vice
versa, you don't have to make an either-or decision.
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
What is math exp in java?
What is constructor in java ?
What are the escape sequences in java?
What if I write static public void instead of public static void in java?
What is string literal in java?
Why is multithreading important?
What is the purpose of an interface?
Why is stringbuffer not immutable?
what is the difference between thread and runnable types? : Java thread
What is difference between arraylist and list in java?
Is a string literal?
What does exclamation mean in java?
Can we call the constructor of a class more than once for an object?
What is arraylist e?
Can you declare an interface method static?