JSF and Spring performance vs poor JSP performance

前端 未结 5 1783
日久生厌
日久生厌 2021-02-10 13:57

I saw some JSF projects developed by my collegues and these projects seemed to me very slow. Does anybody have the same opinion?

I\'m currently using jsp+jstl and jQuer

5条回答
  •  再見小時候
    2021-02-10 14:37

    Benefits of Spring MVC:

    • The framework subtly encourages you to write better designed code: by using dependency injection, and splitting up your application design into domain (model) objects, controllers, service classes, DAOs, etc.
    • As a side effect of the first bullet point, your code ends up being extremely and easily unit-testable.

提交回复
热议问题