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 does index mean in java?
What is the equal sign?
What is a method type?
Is set sorted in java?
Is empty set an element of empty set?
Is the milky way in a void?
when you will synchronize a piece of your code? : Java thread
Why java is made?
Can a class be private?
Does a function need a return?
What are pass by reference and pass by value?
What is static import?
Why arraylist is used in java?
What are implicit objects in java?
What data type is a string?