Primavera de datos JPA - Buscar por el nombre del campo en la colección

Sergey Chernik:

Dos días de reflexión y de búsqueda y cualquier resultado - Internet y la documentación no responder a mi pregunta.

Necesito construir un nombre de método Jpa de repositorios para obtener una Set<Recipe>base de datos, por campo de la Ingredient, ingrName. También estoy usando una tabla de unión y de la entidad RecipeIngredientpara almacenar la cantidad de cada ingrediente en la receta utilizandoRecipeIngredient

Ayuda por favor.

¡Gracias!

Trato de hacer algo como esto:

package com.pck.repository;

import com.pck.Recipe;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;

import java.util.Set;

@Repository
public interface RecipeRepository extends JpaRepository<Recipe, Integer> {

    public Set<Recipe> findAllByRecipeIngrs_Ingredient_IngrNameIn(Collection<String> ingredientNames)

}

Pero does'nt obras.

Receta:

package com.pck.entity;

import javax.persistence.*;
import java.util.*;

@Entity
@Table(name="recipes")
public class Recipe {

    @OneToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY, orphanRemoval = true, mappedBy = "recipe")
    private Set<RecipeIngredient> recipeIngrs;

    public Recipe() {}

    public Set<RecipeIngredient> getRecipeIngrs() {
        return ingredients;
    }
    public void setRecipeIngrs(Set<RecipeIngredient> recipeIngrs) {
        this.recipeIngrs = recipeIngrs;
    }

    // ... other fields, constructors, getters, setters
}

recipeIngredient:

package com.pck.entity;

import javax.persistence.*;
import java.util.Objects;

@Entity
@Table(name="recipe_ingredient")
public class RecipeIngredient {

    @JsonIgnore
    @ManyToOne(cascade = {CascadeType.DETACH, CascadeType.MERGE, CascadeType.REFRESH})
    @JoinColumn(name = "recipe_id")
    private Recipe recipe;

    @ManyToOne(cascade = {CascadeType.DETACH, CascadeType.MERGE, CascadeType.REFRESH})
    @JoinColumn(name = "ingredient_id")
    private Ingredient ingredient;

    @Column(name = "ingredient_amount_grams")
    private double ingredientAmountGrams;

    public RecipeIngredient() {}

    public Recipe getRecipe() {
        return recipe;
    }
    public void setRecipe(Recipe recipe) {
        this.recipe = recipe;
    }

    public Ingredient getIngredient() {
        return ingredient;
    }
    public void setIngredient(Ingredient ingredient) {
        this.ingredient = ingredient;
    }

    public double getIngredientAmountGrams() {
        return ingredientAmountGrams;
    }
    public void setIngredientAmountGrams(double ingredientAmountGrams) {
        this.ingredientAmountGrams = ingredientAmountGrams;
    }

    // ... other fields, constructors, getters, setters

}

Ingrediente:

package com.pck.entity;

import javax.persistence.*;
import java.util.*;

@Entity
@Table(name="ingredient")
public class Ingredient{

    @Column(name="ingr_name")
    private String ingrName;

    @OneToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY, orphanRemoval = true, mappedBy = "ingredient")
    private Set<RecipeIngredient> recipeIngrs;

    public Ingredient() {}

    public String getIngrName() {
        return ingrName;
    }
    public void setIngrName(String ingrName) {
        this.ingrName = ingrName;
    }

    public Set<RecipeIngredient> getRecipeIngrs() {
        return recipeIngrs;
    }
    public void setRecipeIngrs(Set<RecipeIngredient> recipeIngrs) {
        this.recipeIngrs = recipeIngrs;
    }
}
Andrónico:

Puede aprovechar JPQL:

@Query("select r from Recipe r inner join r.recipeIngrs ri inner join ri.ingredient i where i.ingrName in :names")
public Set<Recipe> findAllByIngrNameIn(@Param("names") Collection<String> ingredientNames)

Supongo que te gusta

Origin http://43.154.161.224:23101/article/api/json?id=300508&siteId=1
Recomendado
Clasificación