Is it worth it to use FLEX + JAVA - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T08:10:03Z http://stackoverflow.com/feeds/question/704303 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/704303/is-it-worth-it-to-use-flex-java 3 Is it worth it to use FLEX + JAVA Maksim 2009-04-01T06:26:33Z 2009-10-29T13:19:50Z <p>My group is about to start doing a big web based project/application. The app. itself will not be used by many people and it is basically only for Intranet use for managers and application developers. Our boss wants our programmers to use the following tech. stack: <strong>FLEX -> Cairngorm -> BLAZEDS -> JAVA (EJB3 + POJO) -> ORACLE DB</strong> Some of the developers are saying that it is hard to use FLEX stuff (because they need to learn FLEX and Action Script) but others are saying that FLEX is the only best solution (just because they like how flex works and they saw a lot of examples).</p> <p>Do you think it's worth it to use flex or we should use some frameworks (ex.: JSF) instead.</p> http://stackoverflow.com/questions/704303/is-it-worth-it-to-use-flex-java/704325#704325 3 Answer by Sandy for Is it worth it to use FLEX + JAVA Sandy 2009-04-01T06:33:37Z 2009-04-01T06:33:37Z <p>Flex is a pretty powerful UI presentation technology. What it seems from your question is that you would have lots of data being presented in the UI layer, where Flex seems to be the perfect choice (except in case where you want to handle all the pains of doing it via JSPs etc.).</p> <p>Caringorm helps you apply MVC pattern to Flex UI layer - similar to what Struts/Spring MVC does to JSP layer.</p> <p>For JAVA, I would recommend using Spring-enabled services and POJO instead of EJB3 to achieve the effect. Using spring-enabled services and/or webservices would help you scale better and lead to lower cost of maintenance, as you business logic is in POJOs.</p> <p><em>Again this is a personal opinion based on my own experience.</em></p> http://stackoverflow.com/questions/704303/is-it-worth-it-to-use-flex-java/704390#704390 5 Answer by Willie Wheeler for Is it worth it to use FLEX + JAVA Willie Wheeler 2009-04-01T07:22:04Z 2009-04-01T07:22:04Z <p>Flex has a markup piece (MXML) and a programming language piece (ActionScript). There isn't much of a learning curve for the MXML part. It's completely straightforward. ActionScript is a different story but I guess it's tough for me to take seriously the idea that Java developers (I'm one myself) would find Flex in general or ActionScript in particular "hard". I and a team of about five or six other Java developers were creating basic UIs on the very first day, and within a week we were doing some pretty functional stuff.</p> <p>Totally subjective opinion I know, but it's completely worth trying out. Flex is just really fun.</p> http://stackoverflow.com/questions/704303/is-it-worth-it-to-use-flex-java/704428#704428 1 Answer by jottos for Is it worth it to use FLEX + JAVA jottos 2009-04-01T07:38:28Z 2009-04-01T07:38:28Z <p>keep in mind that there is a very large Flex user community out there to lean on and if you're thinking Flex, you may as well look at Air as well which will provide you out of browser deployment </p> http://stackoverflow.com/questions/704303/is-it-worth-it-to-use-flex-java/704589#704589 1 Answer by Damo for Is it worth it to use FLEX + JAVA Damo 2009-04-01T08:30:43Z 2009-04-01T08:30:43Z <p>You should check out <a href="http://exadel.com/web/portal/flamingo" rel="nofollow">Exadel Flamingo</a>. It allows you to easily hook Flex into a Java backend (eg. Spring, Seam etc)</p> <p>I'd recommend <a href="http://seamframework.org" rel="nofollow">Jboss Seam</a> for EJB3+POJO. </p> http://stackoverflow.com/questions/704303/is-it-worth-it-to-use-flex-java/705289#705289 2 Answer by James Ward for Is it worth it to use FLEX + JAVA James Ward 2009-04-01T12:36:32Z 2009-04-01T12:36:32Z <p>Check out the <a href="http://flex.org/tour" rel="nofollow">Tour de Flex</a> for examples of what Flex can do and how to do it. It has some Java integration samples in it as well.</p> http://stackoverflow.com/questions/704303/is-it-worth-it-to-use-flex-java/705703#705703 2 Answer by Osman for Is it worth it to use FLEX + JAVA Osman 2009-04-01T14:12:10Z 2009-04-01T14:12:10Z <p>It's not hard to learn MXML and Actionscript. But the data binding and all of the various classes and components can be kind of obscure sometimes. Also, learning to customize components and do more advanced stuff can have a learning curve.</p> <p>Learning Flex and Cairngorm at the same time is not recommended, even by the the Cairngorm folks themselves. It is definitely a very fast and easy way to deploy applications, but learning the best way to use Flex is hard enough, and throwing Cairngorm into the mix when you don't know how flex works might be frustrating, but very rewarding. I am using Cairngorm in my latest project, and I wish I had used it in some of my previous applications.</p> <p>Here are some resources:</p> <p><a href="http://weblogs.macromedia.com/swebster/archives/2006/08/why%5Fi%5Fthink%5Fyou.html" rel="nofollow">Good article to help decide whether to use Cairngorm</a></p> <p><a href="http://www.adobe.com/devnet/flex/articles/introducing%5Fcairngorm.html" rel="nofollow">"Introducing Cairngorm" written by Adobe Customer Training</a></p> <p><a href="http://www.adobe.com/devnet/flex/articles/cairngorm%5Fpt1.html" rel="nofollow">Adobe's 6 part series introducing Cairngorm with an example walk through</a></p> http://stackoverflow.com/questions/704303/is-it-worth-it-to-use-flex-java/706374#706374 1 Answer by tomas for Is it worth it to use FLEX + JAVA tomas 2009-04-01T16:35:11Z 2009-04-01T16:35:11Z <p>You might also want to look into Grails as an integration point. There has been a lot of recent work being done here at it can save you a lot of time. Specially take a look at the graniteDS plugin for Grails and the Flex Scaffold Plugin </p> <p><a href="http://www.grails.org/plugin/flex-scaffold" rel="nofollow">http://www.grails.org/plugin/flex-scaffold</a> <a href="http://www.grails.org/GraniteDS+Flex+Plugin" rel="nofollow">http://www.grails.org/GraniteDS+Flex+Plugin</a></p> http://stackoverflow.com/questions/704303/is-it-worth-it-to-use-flex-java/706442#706442 4 Answer by le dorfier for Is it worth it to use FLEX + JAVA le dorfier 2009-04-01T16:51:20Z 2009-04-01T16:51:20Z <p>I wouldn't jump into a whole new technology based on seeing some examples. It sounds like a major Risk Factor for your project, at least based on your (surely unbiased) description. </p> <p>There is, however, a generally accepted course of action. Your group should at least start with a Proof Of Concept microproject and draw your own conclusions based on what you find out, your skills, and the project.</p> <p>(I might do it if the boss says I must, however. Although that in itself is a noxious odor.) </p> http://stackoverflow.com/questions/704303/is-it-worth-it-to-use-flex-java/716742#716742 2 Answer by philip andrew for Is it worth it to use FLEX + JAVA philip andrew 2009-04-04T08:06:56Z 2009-04-04T08:06:56Z <p>I would recommend SEAM Framework with Granite-DS and Flex.</p> <p>The only problem with this is the steep learning curve, but technically from my point of view its the best combination.</p> http://stackoverflow.com/questions/704303/is-it-worth-it-to-use-flex-java/1643669#1643669 0 Answer by Kieveli for Is it worth it to use FLEX + JAVA Kieveli 2009-10-29T13:19:50Z 2009-10-29T13:19:50Z <p>I think you'll find way more support for using a Java Applet in the user interface instead of Flex. By support I mean libraries, forums, and tutorials. I've been looking at Flex for only a little while so far, and the search results I'm finding are geared less towards developers, and more towards non-developers trying to make pretty things. I'm of the opinion that there's nothing wrong with Java applets as a front-end, and I think more people will come around once Java shortens the VM's launch times (a current priority for the next release).</p> <p>If Java applets are a point of contention, then there's the Google Web Toolkit (GWT). It allows for full development and testing and debugging within your Java development environment, but then deploys automatically to an HTML / JavaScript. Absolutely Fantastic. Their third party components have really come a long way, and their user support makes the choice an easy one.</p> <p>Less languages = less mind-stack swaps.</p>