What is the difference between JSP and Java Servlets?
December 25, 2010 – 5:42 pmWhat is the difference between JSP and Java Servlets. Is there anything common in between them?
Related posts:
- What is the difference between JSP and Java Servlets?
- What's the difference between public and private in java programming?
- How come can some inbuilt Java interfaces be instantiated as well as contain fully defined methods?
- What is the difference between J2SE and JAVA SE Runtime Environmnet?
- how to insert images into a mysql database using servlets in Netbeans and jsp?
- What is the difference between Java and Java Client? Where can I get more informaiton on Java Client?
- What actually is java eclipse? What is the difference between the conventional java and Eclipse? ?
- what i the difference between java standalone application and web application?
- What is the difference between Java and Adobe Acrobat Reader?
- What is the diffrence between a java phone and a symbian phoone?
One Response to “What is the difference between JSP and Java Servlets?”
1 . JSP : Java code inside html
Servlets : html inside the java code
2. JSP needs to be converted to Java servlets before being served. JSPC does the job of converting the jsp files to the java servlets and then they are converted to the class files by the java compiler.
jsp looks cleaner and easier with its implicit objects like request, application etc.. and it should have been evolved from java servlets.
By Hari Krishnan on Dec 25, 2010