views:

854

answers:

6

Appfuse vs. Roo, what would you use and why?

What are the sweet spots of each.

+1  A: 

For starters, roo looks more over engineered, with code generation, use of aspect oriented programming and more.

Lucy
"over engineered" is usually taken to be a bad thing, but I'm guessing you didn't mean it like that
skaffman
+1  A: 

Appfuse doesn't seem to be maintained anymore seeming that the last version was released on May, 2008.

Roo it's right now a little bleeding edge, because of the use of the still-unreleased version 3 of Spring Framework, but that will change, and that version brings a lot of interesting changes to the table.

It also upsells you on more of the Spring technologies portfolio, such as STS and tcServer, and makes it dead easy to use Spring Security and Spring WebFlow.

Jeduan Cornejo
The maintainer just made a comment that AppFuse is getting updated soon, so it is being maintained, though probably not as actively.
Jean Barmash
"Upsell" is a little misleading here, given that the Spring products you mentioned are free of charge.
Andrew Swan
And true to his word, there have been upgrades to AppFuse in late 2009 so it's "not dead yet".
John Munsch
+4  A: 

My notes on AppFuse and Roo:

AppFuse

Is a fully working template application/project.

  • Traditional DAO <-> Service <-> Controller architecture

  • Easy to get started with maven archetypes

  • Great documentation and tutorials

  • Not really up to date. Spring 3 final is soon to be released and AppFuse is based on 2.5 (?)

Spring Roo

Spring Roo on the other hand is a tool that speeds up development by using code generation.

  • Getting started with a new, fully configured project takes 1 minute

  • Creates rich domain objects where CRUD are weaved into the domain objects using AOP instead of traditional DAOs/services

  • Hard to grasp if you are new to Spring

  • Documentation is not that good yet

  • Really cool! I.e. add Spring Security to your project with just one line of code!

Joel S
+10  A: 

As per the answer I gave to TheServerSide thread on this issue...:

AppFuse aims to provide a single initial scaffold of your new project. This is similar to Maven archetypes or Eclipse's "new project" features in that you run them once at the start of a new project and then you maintain the scaffolded code going forward. The scaffold system has no further involvement in your project once you've run it once.

Roo, on the other hand, provides a round-trip aware active code generator for your long-term usage on a given project. As such Roo offers value both at initial creation time as well as whenever you are modifying the project going forward.

In practical terms this means as you evolve your project, Roo will automatically maintain certain files. To take a simple example, when you add (or remove) a field, Roo will update the toString, getters/setters, JSP pages etc for you automatically. It also offers commands so you can add new capabilities later. So if you need to add security six months after you created the project, you just "security setup". Or if you need to send emails, you just "http://static.springsource.org/spring-roo/reference/html/command-index.html#command-index-email-sender-setup". There are similar commands for many other capability areas well, such as Spring Web Flow, JUnit, Selenium, common JPA providers etc. You just defer the decision as long as you like, and Roo will only add those capabilities at the time you ask for them (and it will also automatically use those new capabilities in your project).

There are many other differences as well. Roo allows extension via user-developed add-ons, it offers a highly usable shell, it allows you to incrementally build a new project and add features only when required, it extensively supports the latest versions of the major Spring technologies, it comes with a SpringSource-developed (and therefore endorsed) application architecture and so on.

A read of the Roo Reference Guide's Introduction Chapter or simply completing the ten minute test project will illustrate they are very different in approach.

Ben Alex
A: 

I am going with ROO.

I am already using

  • Spring
  • Spring ORM/JDBC
  • Spring MVC
  • Spring Remoting
  • STS (Tool-suite)

So my preference is SpringSource products, AS I am already familiar with API style, documentation, conventions of SpringSource and even their coding practices once I extended/implemented security-framework's code.. ;-)

so, my advice is go with the tool/framework which is more natural to you..

Cheers,

Nachiket
A: 

AppFuse has integration with Tapestry, Wicket and other Web frameworks which Roo does not - yet

Adrian