Is there a CRUD generator utility in Java(any framework) like Scaffolding in Rails?

Viewed 54612

Is there a CRUD generator utility in Java like Scaffolding in Rails? Can be in any framework or even plain servlets. Must generate controllers + views in jsp, not just DAO code...

22 Answers

Spring Roo seems to be exactly what you're looking for: CRUD code generation, spits out pure Java code that can be made tun run entirely independant from the framework.

AppFuse.

It is very powerful, perhaps it will be too powerful for the task in question, but it does it well.

There's krank on Google Code. I haven't tried it yet, but it looks promising.

reinCRUD is a vaadin add-on which works using annotated hibernate entities. You can create a CRUD application within a few minutes and you can re-use components like lists, forms and search forms.

Related