Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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...

like image 885
Sathish Avatar asked Jan 05 '09 21:01

Sathish


People also ask

What is crud in Java?

CRUD stands for Create, Read/Retrieve, Update and Delete and these are the four basic operations that we perform on persistence storage.

What is CRUD generator?

CRUD is actually an acronym for describing the four different actions of data storage: Create, Read, Update and Delete. Crud Generator is a particular tool which helps in building user interface so that you can execute the above operations on the data available.


1 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.

like image 193
Michael Borgwardt Avatar answered Oct 17 '22 10:10

Michael Borgwardt