iluwatar / java-design-patterns

Design patterns implemented in Java
https://java-design-patterns.com
Other
89.42k stars 26.44k forks source link

Association Table Mapping pattern #347

Open iluwatar opened 8 years ago

iluwatar commented 8 years ago

Description:

The Association Table Mapping design pattern is used to manage many-to-many relationships between objects by using an intermediary table (association table) in the database. This pattern is particularly useful when an application requires handling complex relationships where each object can have multiple associations with objects of another type.

Main elements of the pattern:

References:

Acceptance Criteria:

  1. Create an association table to manage many-to-many relationships between two entities.
  2. Implement CRUD operations ensuring the association table is appropriately updated.
  3. Provide unit tests demonstrating the correct implementation and functionality of the Association Table Mapping pattern.
hofmama3 commented 8 years ago

Can I work on this pattern?

iluwatar commented 8 years ago

Please go ahead @hofmama3

iluwatar commented 7 years ago

This issue is free for taking again.

LeonoraGy commented 4 years ago

I'd like to work on this pattern.

iluwatar commented 4 years ago

Thanks @LeonoraGy go ahead

iluwatar commented 4 years ago

@LeonoraGy are you still working on this pattern?