How to search through array in Spring Boot CrudRepository

后端 未结 2 2016
我寻月下人不归
我寻月下人不归 2021-01-06 18:43

Say, I have the following entity class:

Person.java

@Entity
public class Person {
  @Id
  private String name;

  private String[] c         


        
2条回答
  •  天涯浪人
    2021-01-06 19:20

    I'm guessing at how you are currently storing the cars information and suggesting a possible solution:

    @Entity
    public class Car {
      @Id
      private String name;
    
      @Column
      private String person_name;
    }
    
    public interface CarRepository extends JpaRepository {
        //Result will have all cars with the person_name identifying the Person @Entity
        List findByName(String name);
    }
    

提交回复
热议问题