Is JSP = Servlet? And JSF = Pre-build UI based JSP (like asp.net web control)?
JSP (JavaServer Pages)JSP is a Java view technology running on the server machine which allows you to write template text in (the client side languages like HTML, CSS, JavaScript and so on). JSP supports the so-called taglibs which are backed by pieces of Java code with which you can control the page flow and/or output dynamically (programmatically). A well known taglib is JSTL. JSP also supports Expression Language which can be used to access backend data (actually, the attributes which are available in page, request, session and application scopes), mostly in combination with taglibs. When a JSP is requested for the first time or when the webapp starts up, the servlet container will compile it into a class extending ServletsServlet is an Java application programming interface (API) running on the server machine which can intercept on the requests made by the client and can generate/send a response accordingly. A well known example is the When a Servlet is requested for the first time or when the webapp starts up, the servlet container will create an instance of it and keep it in memory during webapp's lifetime. The same instance will be reused for every incoming request whose URL matches the servlet's URL pattern. You can access the request data by JSF (JavaServer Faces)JSF is a component based MVC framework which is built on top of the Servlet API and provides components in flavor of taglibs which can be used in JSP or any other Java based view technology such as Facelets. Facelets is much more suited to JSF than JSP. It namely provides great templating capabilities such as composite components, while JSP basically only offers the As being a MVC (Model-View-Controller) framework, JSF provides the Related questions |
|||||||||||||||
|
|
See http://java.sun.com/products/jsp/faq.html
See http://wiki.java.net/bin/view/Projects/JavaServerFacesSpecFaq
JSP is a specialized kind of servlet. JSF is a set of tags you can use with JSP. |
|||
|
|
|
From Browser/Client perspective JSP and JSF both looks same, As Per Application Requirements goes, JSP is more suited for request - response based applications. JSF is targetted for richer event based Web applications. I see event as much more granular than request/response. From Server Perspective JSP page is converted to servlet, and it has only minimal behaviour. JSF page is converted to components tree(by specialized FacesServlet) and it follows component lifecycle defined by spec. |
||||
|
|
|
Servlet - it's java server side layer. JSP - it's Servlet with html JSF - it's components base on tag libs JSP - it's converted into servlet once when server got request. |
|||||
|
|
|
that is true that JSP is converted into servlet at the time of execution, and JSF is totally new thing in order to make the webpage more readable as JSF allows to write all the programming structures in the form of tag. |
|||
|
|
|
There are also situations where you can favor JSP over JSF. The application nature should be the deciding factor to choose the technology. If you have a rich GUI interaction and lot of Java scripting needed then favor JSF. Basically if your GUI app architecture is like Component oriented & even driven like Swing then JSF is the best. If the application is just a plain form submitting, not much of GUI interaction needed, then JSP could do well if learning a new tech is an overhead and also complex framework is unnecessary. |
|||
|
|