I have to create an application with Flex 4 with Swiz (MVC Framework) as the UI Layer, Spring (MVC or Web Flow) as the Business Layer, Oracle 10g as Data layer, Hibernate as ORM which will work with Oracle, with Maven, with IBM Websphere and Tomcat.
I am trying to decide should I use Spring MVC (since it has to work with Swiz and Flex 4 which is MVC) or should I work with Spring Web Flow. Also any good examples on web w开发者_Python百科ith tutorials on this technology set.
I appreciate any help.
Thank you, Sid
Given that WebFlow is primarily a page-flow framework, it's almost certainly inappropriate for your situation. Your Flex client will likely communicate via AJAX-style calls to the backend, and Spring MVC is the best choice for that.
精彩评论