Entitiy framework for JAVA?

Asked

Viewed 48 times

3

Good evening, guys, I’m new to programming. So, I’ve been looking at some articles and watching videos about the Entity framework for C #, I wonder if there are also some frameworks in Java that do the same or similar function in relation to CRUD?

1 answer

7


What you seek is a ORM, Object-Relational Mapping, so are called these frameworks to map and facilitate access to bank entities through class models.

Here’s a great question with great answers talking about ORM: What are the functions of an ORM

Well, the framework ORM perhaps best known for Java maybe it’s the Hibernate, that even has a version for .NET calling for NHibernate, which is "concurrent" of EntityFramework.

You can download and view the documentation on the official website http://hibernate.org/

If you want a tutorial with example configuration and code, here’s a good one to get you started: netbeans.org/Ibernate

  • Thank you very much for your help Ricardo!

Browser other questions tagged

You are not signed in. Login or sign up in order to post.