Pros and Cons of Various Java Web Presentation Layer Technologies

后端 未结 8 675
一向
一向 2020-12-08 12:06

I\'m currently working on a web app that makes heavy use of JSF and IceFaces. We\'ve had some discussions of moving to another presentation layer, and I thought I\'d take th

相关标签:
8条回答
  • 2020-12-08 12:37

    The biggest question I'd ask is why are you changing presentation layer? That's a very expensive cost and I can see the benefits of one technology outweighing the others by as much as the cost to change...

    0 讨论(0)
  • 2020-12-08 12:42

    I'd wonder if you a have a service layer that's distinct from the web client, something that the web controllers simply invoke to get their work done.

    If you do, the choice of web UI technology can be decoupled from the back end. If it's exposed as a contract first web service, you can have different apps share it. As long as your clients can send and receive XML they can interact with your services. Want to switch to Flex? No worries - point it at the service and render the XML response.

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