Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

MyBatis maps Java objects to SQL result sets. This is different from Hibernate, which maps Java objects to RDBMS entities (tables or views) and generates the SQL for us. With MyBatis, you code SQL statements and map the result sets to Java POJOs. The quirks of the legacy MITSIS database are more readily handled by SQL than by Hibernate's object-relational model.

...

This project uses MyBatis to retrieve the data involved in the Departmental Audit API. This involves getting a list of students who are in a particular department for a given term. For each student, various sets of data are retrieved. For this overview, we'll concentrate on the students and their subjects. 

1. The Java POJOs

...

The simplified object model is: 

Gliffy Diagram
nameDept Audit Domain Model
pageid100215784

...