0 votes
in Hibernate by

What are Many to Many associations? 

1 Answer

0 votes
by
A many-to-many association occurs when multiple entities are associated with various other entities. In Hibernate, many-to-many associations can be implemented using the @ManyToMany annotation, and a join table is used to store the relationship between the two entities.
...