Given a database, how do you create CRUD forms for Java EE?

Given database schemas, is it possible to automatically create forms for crud operations in tables?

+5
source share
4 answers

You can use Telosys Tools, an Eclipse plugin that works from an existing database with custom speed templates

Just plug in your database and access some templates on GitHub. There are templates for Spring data, AngularJS, JPA ...

See: https://sites.google.com/site/telosystools/

+4
source

Seam - gen, , .

+2

MetaWidget was designed for this.

Given that the JPA model contains almost all the information needed for the basic CRUD interface, it is surprising that there are only so few implementations.

+1
source

Depending on what you mean by J2EE, Spring Roo might be worth a look.

+1
source

All Articles