I have two entity classes Country and Language having bi-directional one to many relationship.
Country
Language
Below are the entity classes:
Update the setter for languages in Country class to the below :
languages
public void setLanguages(List languages) { this.languages = languages; languages.forEach(entity -> entity.setCountry(this)); }