UML Diagrams & Has Many/Belongs To Relationships
Last updated
Last updated
Table of Contents:
When building an application, the first step is always to make a plan.
We plan the features of the application with user stories
We plan the user interface with a wireframe
Now that we're preparing to build more complex applications, we need to start thinking about how we plan our data. This plan is often called the data architecture and can be represented with a Class Diagram.
UML stands for Unified Modeling Language and it defines a way of describing classes and their relationships.
UML Diagrams can be created using a tool like https://draw.io or they can simply be drawn using pen and paper.
TODO: Take a moment and create a UML diagram for the Book
class below:
Often, classes will interact with each other. The way in which they interact defines what kind of relationship exists between the two classes.
One of the most common relationships is a has-many / belongs to relationship in which one class manages instances of another. For example, a PetOwner
class might manage many instances of a Cat
class.
We can turn our diagrams from simple class diagrams to Entity Relationship Diagrams (ERDs) by connecting them.
Now, imagine that in addition to our Book
class, we had a Library
class. Every instance of the Library
class might manage its own collection of Book
instances.
TODO: Now, create a UML diagram for the Library
class and draw the correct association line between your two classes. If you are using draw.io, go to the "ERD" section and find the "one-to-many" connector
Below are some examples of pairs of classes that you can create that will have a "has many / belongs to" relationship.
Doctor
and Appointment
Playlist
and Song
Group
and User
Class
and Student
With a partner:
Create the class diagram for each class along with the relationship arrow between them.
Then, implement the classes in JavaScript.
Attempt to have a combination of private and public properties / methods, and static and instance properties / methods.
Check out the library-book-example.js
file for an example.