What is the difference between JSF, Servlet and JSP?

前端 未结 15 1920
北海茫月
北海茫月 2020-11-21 06:41

I have some questions. These are :

  1. How are JSP and Servlet related to each other?
  2. Is JSP some kind of Servlet?
  3. How are JSP and JSF related t
15条回答
  •  我寻月下人不归
    2020-11-21 07:04

    Jsp is also having in built servlet code which don't need any external compilation it can be run directly run. Changes will take effect in jsp directly in a browser.

    Servlet need to be compiled (i.e it will have specific class creation)

    Jsf is a view component of MVC Framework

提交回复
热议问题