views:

70

answers:

3

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.

+2  A: 

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.

hvgotcodes
+1  A: 

The Play Framework can generate some quick CRUD:

http://www.playframework.org/documentation/1.1RC3/guide7

Nate
+1  A: 

Look into the following:

Yevgeniy Brikman