What are the main disadvantages of Java Server Faces 2.0?

前端 未结 13 2225
猫巷女王i
猫巷女王i 2020-11-22 06:29

Yesterday I saw a presentation on Java Server Faces 2.0 which looked truly impressive, even though I am currently a happy ASP.NET MVC / jQuery developer. What I liked most a

相关标签:
13条回答
  • 2020-11-22 07:12

    For me the biggest shortcoming of JSF is poor support for programmatically (dynamically) generated pages.
    If you want to construct your page (create page component model) dynamically from java code. For example if you are working on WYSIWYG web page constructor. Adequate documentation of this use case in not generally available. There are many points where you have to experiment and development is quiet slow. Many things just don't work how you would expect. But generally its possible hack it somehow.
    Good thing is that it's not problem in philosophy or architecture of JSF. It's simply not elaborated enough (as far as I know).

    JSF 2 brought Composite Components which should make component development easy, but their support for dynamic (programmatic) construction is very poor. If you overcome quiet complicated and almost undocumented process of dynamic Composite Component construction, you will find out that If you nest few Composite components little deeper, they stop working, throwing some exceptions.

    But It seems that JSF community is aware of this shortcomings. They are working on this as you can see from these two bugs
    http://java.net/jira/browse/JAVASERVERFACES-1309
    http://java.net/jira/browse/JAVASERVERFACES_SPEC_PUBLIC-599

    Situation should be better with JSF 2.2 at least if we are talking about specification.

    0 讨论(0)
提交回复
热议问题