Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what are the fastest java tools to generate CRUD screens from a DB schema?

I am constantly in search of better and faster java tools to prototype webapps. I generally start with a good data model on the backend, and work towards the screens. What are some good tools that I might not know about that can be used to quickly generate functioning CRUD screens.

like image 883
clarson Avatar asked Oct 29 '10 18:10

clarson


2 Answers

Look into the following:

  • Grails
  • Play!
  • Roo
like image 127
Yevgeniy Brikman Avatar answered Sep 20 '22 14:09

Yevgeniy Brikman


With Grails you can get some CRUD screens in on the order of minutes with the framework's scaffolding machinery. Its not strictly Java, but Grails can interact with existing Java code (in fact is uses Hibernate/Spring under the hood), and it will generate .war files for you to deploy in your favorite container.

like image 32
hvgotcodes Avatar answered Sep 24 '22 14:09

hvgotcodes