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
Can constructor return value?
Which containers use a flowlayout as their default layout in java programming?
How do you compare arrays in java?
How many types of string data types are there?
Difference between current previous versions of Java?
Can an integer be a string?
How to run a JAR file through command prompt?
Can a static block throw exception?
What is the unit of plancks constant?
Is string is a data type?
What is the history of java?
What is advantage of java?
How can you traverse a linked list in java?
What is an abstract method in java programming?
What is complexity in java?