1

What I have now is a simple relational database in MySQL with 3 tables. What I want is a way to generate simple JAVA classes with basic CRUD functions. Any suggestions?

tshepang
  • 12,111
  • 21
  • 91
  • 136
Sams Good
  • 33
  • 1
  • 5
  • Does [this related SO topic](http://stackoverflow.com/questions/414583/is-there-a-crud-generator-utility-in-javaany-framework-like-scaffolding-in-rai) help? – alex.b Apr 08 '13 at 09:02

1 Answers1

0

The de-facto standard is Hibernate for object-relational mapping.

The most popular IDEs (NetBeans, Eclipse) have plugins which will generate a configuration and classes based on your existing tables.

vbence
  • 20,084
  • 9
  • 69
  • 118