Home task #16

  1. Git repo
  2. README file with rules from lecture
  3. create new maven/gradle project
  4. Create 2 POJO classes with 1 to 1 relation
  5. Create DB schema for classes from #4
  6. Add JPA + hibernate libs to project
  7. Configure POJO mapping with JPA annotations
  8. Create DAO (use EntityManager) for POJOs with 2 method: save(pojo) and find(id)
  9. Tests