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?
Asked
Active
Viewed 1,998 times
1 Answers
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
-
-
-
-
@SamsGood Check the chapter *"Generating Hibernate Mapping Files and Java Classes"* here: https://netbeans.org/kb/docs/web/hibernate-webapp.html – vbence Apr 08 '13 at 14:13