Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Please suggest a Java Framework to make the CRUD easy [closed]

I know that the RoR can do the CRUD easily, but is there any similar framework in Java to make the CRUD easy instead of typing boring SQL statement?

like image 831
DNB5brims Avatar asked Dec 13 '09 12:12

DNB5brims


People also ask

What is CRUD framework?

In computer programming, create, read, update, and delete (CRUD) are the four basic operations of persistent storage. CRUD is also sometimes used to describe user interface conventions that facilitate viewing, searching, and changing information using computer-based forms and reports.

What are the 4 CRUD components?

CRUD is an acronym that comes from the world of computer programming and refers to the four functions that are considered necessary to implement a persistent storage application: create, read, update and delete.

What are CRUD operations in Java?

CRUD refers to the four basic operations a software application should be able to perform – Create, Read, Update, and Delete. In such apps, users must be able to create data, have access to the data in the UI by reading the data, update or edit the data, and delete the data.


1 Answers

Hibernate is usually recommended for Java.

Note that Grails is the Java equivalent of RoR and can use GORM (Grails Object-Relational-Mapping - a Groovy interface over Hibernate) or Hibernate directly. So if you're coming from the RoR world, perhaps checking out Grails will be useful.

like image 166
Brian Agnew Avatar answered Oct 13 '22 10:10

Brian Agnew