我目前正在开发一个食谱应用程序,但在生成DB表时遇到了问题。以下是我正在使用的实体文件:第一个
Sping Boot 自动为我创建表,但我只想为RecipeIngredient创建一个表,但它为它们创建了两个表。它工作得很好,但我想知道的是如何将这两个表合二为一,或者让Spring Boot不生成其中的一个。
icomxhvb1#
如果您希望recipe_ingedients表仅删除recipeIngredient实体类,并且如果您希望保留recipe_ingredient表,请删除以下内容:
@OneToMany(cascade=CascadeType.ALL) private List<RecipeIngredient> ingredients = new ArrayList<>();
1条答案
按热度按时间icomxhvb1#
如果您希望recipe_ingedients表仅删除recipeIngredient实体类,并且如果您希望保留recipe_ingredient表,请删除以下内容: