How to boost productivity in my Flex/Java stack? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T12:54:20Z http://stackoverflow.com/feeds/question/306190 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/306190/how-to-boost-productivity-in-my-flex-java-stack 1 How to boost productivity in my Flex/Java stack? Mike Sickler 2008-11-20T17:45:46Z 2009-04-03T09:40:33Z <p>I am embarking on a new RIA project with Java on the backend. I'm the only developer, and the app is a line-of-business application. My current stack looks like this:</p> <p>MySQL || Spring(JdbcTemplate for data access) || BlazeDS (remoting) || Flex(Cairngorm)</p> <p>My question is: what changes can I make to improve productivity? Manually coding SQL, server-side entity objects, client-side value objects and all the Cairngorm stuff is obviously a drag, but I'm not sure what higher-level frameworks to introduce.</p> <p>What Flex/Java stack has served you well? </p> http://stackoverflow.com/questions/306190/how-to-boost-productivity-in-my-flex-java-stack/306289#306289 4 Answer by Hates_ for How to boost productivity in my Flex/Java stack? Hates_ 2008-11-20T18:11:28Z 2008-11-20T18:11:28Z <p><em>Manually coding SQL</em></p> <p><a href="http://www.hibernate.org/" rel="nofollow">Hibernate</a> is an option to cut this out.</p> <p>One thing that may be of interest is Grails with the available Flex Plugin. It's built on Spring, Hibernate and BlazeDS, so it's all there for you. It was unbelieveably easy to get it remoting stored objects and responding to AMF calls. I was using this and then moved over to a RESTful E4X implementation as I found it a lot easier to debug and tweak as I could inspect the server output in a browser and have tighter control over exactly what I returned to my Flex app (lazy loading problems in collections using BlazeDS were a headache at times).</p> <p>Here is a quick tutorial showing how easy the whole Grails + Flex Plugin stack is: <a href="http://marceloverdijk.blogspot.com/2008/01/blazeds-test-drive-sample-in-grails.html" rel="nofollow">BlazeDS in Grails</a></p> http://stackoverflow.com/questions/306190/how-to-boost-productivity-in-my-flex-java-stack/310453#310453 1 Answer by Stephen for How to boost productivity in my Flex/Java stack? Stephen 2008-11-21T22:39:57Z 2009-03-05T11:21:34Z <p>As alternative to hand-coding sql, aside from hibernate, you might wanna consider JPA/Toplink. And since you are already from a Spring camp, check out <a href="http://www.springactionscript.org" rel="nofollow">Spring ActionScript</a> (formerly known as Prana), it's an IOC framework for Flex. It solves many inherent problems in Cairngorm. Also a good IDE that supports Flex/Actionscript like IntelliJ IDEA 8. </p> <p>Whats missing between Flex and BlazeDS is, it doesnt have any sort of landing page where you have a listing of all the available services by just typing a url on the browser (similar to webservice endpoint).</p> http://stackoverflow.com/questions/306190/how-to-boost-productivity-in-my-flex-java-stack/332038#332038 4 Answer by cliff.meyers for How to boost productivity in my Flex/Java stack? cliff.meyers 2008-12-01T20:13:38Z 2008-12-01T20:13:38Z <p>I would seriously reconsider using Cairngorm. In my opinion it's a pretty bloated framework that introduces a lot of abstraction you'll never use. Check out:</p> <p><a href="http://code.google.com/p/swizframework" rel="nofollow">http://code.google.com/p/swizframework</a> <a href="http://www.spicefactory.org" rel="nofollow">http://www.spicefactory.org</a></p> <p>Both introduce the concept of dependency-injection into your Flex app.</p> <p>Also +1 for Hibernate. I would use the standard JPA annotations on a Java class and extend that with Hibernate Annotations as you find you need additional functionality.</p> http://stackoverflow.com/questions/306190/how-to-boost-productivity-in-my-flex-java-stack/584339#584339 0 Answer by aledbf for How to boost productivity in my Flex/Java stack? aledbf 2009-02-25T00:48:39Z 2009-02-25T00:48:39Z <p>You can try <a href="http://www.graniteds.org" rel="nofollow">GraniteDS</a>. It's an alternative to BlazeDS, with an actionScript generator, Spring integration (an Spring security), and if you use an JPA implementation, help you with the Lazy Initialization (in a transparent way). </p> http://stackoverflow.com/questions/306190/how-to-boost-productivity-in-my-flex-java-stack/713251#713251 2 Answer by Stu Thompson for How to boost productivity in my Flex/Java stack? Stu Thompson 2009-04-03T09:40:33Z 2009-04-03T09:40:33Z <p>Check out springsource.org's new <a href="http://www.springsource.org/spring-flex" rel="nofollow">Spring BlazeDS Integration Project</a></p> <blockquote> <p>Spring BlazeDS Integration is a new addition to the Spring portfolio, and a component of the complete Spring Web stack. This project's purpose is to make it easier to build Spring-powered Rich Internet Applications using Adobe Flex as the front-end client. It aims to achieve this purpose by providing first-class support for using the open source Adobe BlazeDS project and its powerful remoting and messaging facilities in combination with the familiar Spring programming model.</p> </blockquote>