I have several tables in an existing database and I want to map them to a Java object. In fact, this is one table that contains basic information, some other tables that refer to such a table entry with a foreign key.
I do not want to store objects in the database, I just want to read them. The program should not be allowed to apply any changes to the underlying database.
I am currently reading from a database with 5 SQL JDBC queries and setting the results then to an object.
Now I am looking for less intensive code. Another goal is the educational aspect. Is Hibernate suitable for this task or is there another ORM framework that better suits my requirements?
user321068
source
share