Open amoose20 opened 2 years ago
Hi @amoose20!
Database designed and created
At least one DAO with full CRUD (create, read, update, delete) implemented with Hibernate & fully unit tested
Two daos are implemented with full crud tested - user and team. Good work!
[ ] Consider more fully testing the relationships between entities - if a user is deleted what happens to their teams? What if a team is deleted? Write test to confirm what should happen does happen. These are also useful as you add more tables and code to make sure existing stuff doesn't break!
[ ] This is a good time to implement the generic dao. The TeamDao and UserDao can then be removed and the generic dao can be used for any additional tables/entities (I can't remember how may you'll have in the end); tests should just be updated to use the generic dao.
Log4J is implemented (no System.out.printlns)
Other
Keep up the hard work! Looking forward to seeing some data in the jsps in the next checkpoint!
@pawaitemadisoncollege checkpoint 2 is ready!