Я использую Spring Data с CrudRepository
. Я пытаюсь сохранить родительский элемент с помощью Cascade для детей, и я даю Hibernate возможность объединять дочерние объекты, но получаю ошибку a different object with the same identifier value was already associated with the session
. Вероятно, это происходит, когда он сохранил две родительские сущности, у которых есть другие дочерние сущности (RecipeIngredients
). Я пытаюсь переопределить equals и hashcode, чтобы сосредоточиться только на id
и name
, но это ничего не меняет. Recipe
объекты такие же, но List<RecipeIgredients>
разные. Есть идеи, как это решить?
Пример:
Это мой существующий объект:
{
"id": 100,
"name": "salat",
"ingredients": [
{
"ingredient": {
"id": 100,
"name": "banana"
},
"count": 2
},
{
"ingredient": {
"id": 1,
"name": "eggs"
},
"count": 1
}
]
}
И я хочу обновить его до одного ниже (удалить один ингредиент ):
{
"id": 100,
"name": "salat",
"ingredients": [
{
"ingredient": {
"id": 100,
"name": "bannana"
},
"count": 2
}
]
}
Родитель:
@Entity
@Data
public class Recipe {
@Id
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "recipe_generator")
@SequenceGenerator(name="recipe_generator", sequenceName = "recipe_seq")
@Column(name = "id", nullable = false)
private Long id;
@NaturalId
@Column
private String name;
@OneToMany(mappedBy = "recipe", cascade = CascadeType.ALL, orphanRemoval = true)
private List<RecipeIngredients> ingredients;
}
Дети в середине таблицы
@Entity
@Data
public class RecipeIngredients implements Serializable {
@EmbeddedId
private RecipeIngredientsId recipeIngredientsId;
@ManyToOne(fetch = FetchType.LAZY)
@MapsId("recipeId")
private Recipe recipe;
@ManyToOne(fetch = FetchType.LAZY, cascade = CascadeType.PERSIST)
@MapsId("ingredientId")
private Ingredient ingredient;
@Column
private Integer count;
public RecipeIngredients(Recipe recipe, Ingredient ingredient) {
this.recipe = recipe;
this.ingredient = ingredient;
this.recipeIngredientsId = new RecipeIngredientsId(recipe.getId(), ingredient.getId());
}
}
Дети
@Entity
@Data
public class Ingredient {
@Id
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "ingredient_generator")
@SequenceGenerator(name="ingredient_generator", sequenceName = "ingredient_seq")
@Column(name = "id", updatable = false, nullable = true)
private Long id;
@NaturalId
@Column(unique = true)
private String name;
}