I have these 2 tables:
T1: County- Name - FK_Country
T2: Country - Name
And when I want to save a County, I want to choose a default Country, but I receive this error: object is an unsaved transient instance - save the transient instance before merging: local.Country; nested exception is org.hibernate.TransientObjectException: object is an unsaved transient instance - save the transient instance before merging: local.County
Java Code
Country country = new Country("USA");
localizationService.saveCountry(country);
localizationService.saveCounty(getForm().getModelObject());