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?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Are you looking for a way to map data to objects and back (Object-Relational Mapping, commonly abbreviated to ORM or OR/M) or way to automate CRUD operations to a set of data? These two are connected, however the answers may change slightly depending on your actual goal.
For example, automated OR/M can be done with anything that supports Java Persistence API. Hibernate is a good bet for this because it’s actually the origin of the JPA.
CRUD handling however means more than just storing data, it relates to user priviledges and dynamic creation of views for the four operations too; OR/M is just a subset of CRUD.