Flex MVC Frameworks - Stack Overflow most recent 30 from stackoverflow.com 2009-11-06T14:04:15Z http://stackoverflow.com/feeds/question/37043 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/37043/flex-mvc-frameworks 11 Flex MVC Frameworks Rydell 2008-08-31T19:24:55Z 2009-10-13T01:45:00Z <p>I'm currently using and enjoying using the Flex MVC framework <a href="http://www.puremvc.org" rel="nofollow">PureMVC</a>. I have heard some good things about Cairngorm, which is supported by Adobe and has first-to-market momentum. And there is a new player called Mate, which has a good deal of buzz.</p> <p>Has anyone tried two or three of these frameworks and formed an opinion?</p> <p>Thanks!</p> http://stackoverflow.com/questions/37043/flex-mvc-frameworks/37566#37566 24 Answer by Theo for Flex MVC Frameworks Theo 2008-09-01T07:27:05Z 2008-12-15T10:35:01Z <p><a href="http://mate.asfusion.com/" rel="nofollow">Mate</a> is my pick. The first and foremost reason is that it is completely unobtrusive. My application code has no dependencies on the framework, it is highly decoupled, reusable and testable. </p> <p>One of the nicest features of Mate is the declarative configuration, essentially you wire up your application in using tags in what is called an event map -- basically a list of events that your application generates, and what actions to take when they occur. The event map gives a good overview of what your application does. Mate uses Flex' own event mechanism, it does not invent its own like most other frameworks. You can dispatch an event from anywhere in the view hierarchy and have it bubble up to the framework automatically, instead of having to have a direct line, like Cairngorms CairngormEventDispatcher or PureMVC's notification system.</p> <p>Mate also uses a form of dependency injection (leveraging bindings) that makes it possible to connect your models to your views without either one knowing about the other. This is probably the most powerful feature of the framework.</p> <p>In my view none of the other Flex application frameworks come anywhere near Mate. However, these are the contenders and why I consider them to be less useful:</p> <p>PureMVC actively denies you many of the benefits of Flex (for example bindings and event bubbling) in order for the framework to be portable -- a doubious goal in my view. It is also over-engineered, and as invasive as they come. Every single part of your application depends on the framework. However, PureMVC isn't terrible, just not a very good fit for Flex. An alternative is <a href="http://code.google.com/p/flexmvcs/" rel="nofollow">FlexMVCS</a>, an effort to make PureMVC more suitable for Flex (unfortunately there's no documentation yet, just source). </p> <p>Cairngorm is a bundle of anti-patterns that lead to applications that are tightly coupled to global variables. Nuff said (but if you're interested, <a href="http://blog.iconara.net/2008/04/13/architectural-atrocities-part-x-cairngorms-model-locator-pattern/" rel="nofollow">here are some more of my thoughts</a>, and <a href="http://blog.iconara.net/2008/12/13/architectural-atrocities-part-10-cairngorms-service-locator/" rel="nofollow">here too</a>).</p> <p><a href="http://code.google.com/p/swizframework" rel="nofollow">Swiz</a> is a framework inspired by the Spring framework for Java and Cairngorm (trying to make up for the worst parts of the latter). It provides a dependency injection container and uses metadata to enable auto-wiring of dependencies. It is interesting, but a little bizzare in that goes to such lengths to avoid the global variables of Cairngorm by using dependency injection but then uses a global variable for central event dispatching.</p> <p>Those are the ones I've tried or researched. There are a few others that I've heard about, but none that I think are widely used. Mate and Swiz were both presented at the recent 360|Flex conference, and there are videos available (<a href="http://mate.asfusion.com/news/360-flex-presentation" rel="nofollow">the Mate folks have instructions on how to watch them</a>)</p> http://stackoverflow.com/questions/37043/flex-mvc-frameworks/151029#151029 0 Answer by Neil Middleton for Flex MVC Frameworks Neil Middleton 2008-09-29T22:36:07Z 2008-09-29T22:36:07Z <p>Bear in mind that Cairngorm is THE adobe sponsored framework, and now hosted on opensource.adobe.com. Also note that it's by far the most prolific amongst developers at the moment.</p> <p>If you know Cairngorm and are looking for a job, you won't go far wrong.</p> http://stackoverflow.com/questions/37043/flex-mvc-frameworks/151385#151385 0 Answer by Brandon for Flex MVC Frameworks Brandon 2008-09-30T01:08:21Z 2008-09-30T01:08:21Z <p>Cairngorm is easy to use and well documented: <a href="http://www.cairngormdocs.org/" rel="nofollow">http://www.cairngormdocs.org/</a></p> <p>I recommend the <a href="http://www.cairngormdocs.org/tools/CairngormDiagramExplorer.swf" rel="nofollow">Cairngorm Diagram Explorer</a> and the classic article about <a href="http://www.adobe.com/devnet/flex/articles/cairngorm_pt1.html" rel="nofollow">Cairngorm</a>.</p> <p>I was new to Flex when I learned Cairngorm but found it useful and easy to learn with the above.</p> http://stackoverflow.com/questions/37043/flex-mvc-frameworks/523338#523338 2 Answer by Emil Tamas for Flex MVC Frameworks Emil Tamas 2009-02-07T06:58:42Z 2009-02-07T06:58:42Z <p>@Neil Middleton - If someone hires me because "I know Cairngorm" and I accept this as a requirement, it means I have the wrong employer and/or the wrong attitude.</p> <p>We use Mate since a couple of months now after initially evaluating Cairngorm. The short learning curve, the simplicity and the elegant way of staying unobtrusive makes Mate excellent for almost everything.</p> <p>I agree with all the points raised by Theo but there's one more thing: Mate actually manages to <em>force</em> the developers learn good practices in terms of architecture whereas Cairngorm doesn't. I've interviewed a couple of Flex candidates that stated "we used Cairngorm in our projects" but, when I asked them about the reasoning, beside being enforced by the company, nobody actually understood why they should use it and how is that in their advantage. </p> <p>Having a developer taking things for granted is another reason why any company should think twice before employing somebody. Personally, I like people that fight for their reasons.</p> <p>I don't know how Mate starts a developer's appetite for learning patterns, perhaps it's a magic combination of many things, but I know for sure that I haven't seen this steady-happy culture around any other framework. It's almost hippie :) (or perhaps it's just Laura's voice in her screencasts - j/k ).</p> http://stackoverflow.com/questions/37043/flex-mvc-frameworks/523384#523384 1 Answer by Christophe Herreman for Flex MVC Frameworks Christophe Herreman 2009-02-07T07:24:54Z 2009-02-07T07:24:54Z <p>We are currently working on a <a href="http://joeberkovitz.com/blog/reviewtube/" rel="nofollow">MVCS</a> implementation in the <a href="http://www.pranaframework.org/" rel="nofollow">Spring ActionScript</a> framework. It uses the full power of the Inversion of Control container so you have centralized dependency management and are able to swap things easily. It is not very prescriptive in how you do things but provides you with a very flexible infrastructure.</p> <p>If you are new to Spring ActionScript and MVCS, I have an introductory post at my blog: <a href="http://www.herrodius.com/blog/158" rel="nofollow">http://www.herrodius.com/blog/158</a></p> http://stackoverflow.com/questions/37043/flex-mvc-frameworks/843131#843131 1 Answer by Yakov Fain for Flex MVC Frameworks Yakov Fain 2009-05-09T11:07:53Z 2009-05-09T11:07:53Z <p>I've seen these kinds of discussions many many times. They usually start with WHICH Flex framework do you use. Not many people ask the question WHY do you even need to use any framework on top of Flex framework.</p> <p>I'm not in favor of using any MVC framework (Cairngorm, PureMVC) in Flex code. Mate is a better candidate. At least it's simple to understand and is non intrusive. I prefer using enhanced components ala cart. We've created and open sourced a bunch of them (see clear.swc in the Clear Toolkit at <a href="http://sourceforge.net/projects/cleartoolkit/" rel="nofollow">http://sourceforge.net/projects/cleartoolkit/</a>.</p> <p>The first chapter of our upcoming O'Reilly book "Enterprise Development with Flex" has a detailed comparison of several Flex frameworks: <a href="http://my.safaribooksonline.com/9780596801465" rel="nofollow">http://my.safaribooksonline.com/9780596801465</a> . </p> http://stackoverflow.com/questions/37043/flex-mvc-frameworks/1135839#1135839 0 Answer by Saumya for Flex MVC Frameworks Saumya 2009-07-16T06:55:01Z 2009-07-16T06:55:01Z <p>MATE is the way to go.A framework which does what a framework should do. De-coupled architecture Simple Small foot print Efficiency</p> http://stackoverflow.com/questions/37043/flex-mvc-frameworks/1319985#1319985 0 Answer by Los for Flex MVC Frameworks Los 2009-08-24T00:33:25Z 2009-08-24T00:33:25Z <p>I kinda have my doubts on these MVC frameworks (Mate, Cairgnorm, etc...) with the way they implement event maps and event controllers, it reminds me too much of wxWidgets and other GUI toolkits of that sort.</p> <p>However, would be really nice is if Flex or one of these MVC frameworks uses the Signal/Slots paradigm that Qt offers.</p> http://stackoverflow.com/questions/37043/flex-mvc-frameworks/1557853#1557853 0 Answer by Sidmitra for Flex MVC Frameworks Sidmitra 2009-10-13T01:45:00Z 2009-10-13T01:45:00Z <p>I was recently looking for the same and found.</p> <p>Guasax - <a href="http://www.guasax.com/guasax/web/en/index.php" rel="nofollow">http://www.guasax.com/guasax/web/en/index.php</a></p>