Find entity by exact matching in collection
问题 I have entity like this: @Getter @Setter @Entity public class Conversation extends AbstractEntity{ @ElementCollection @Column(name = "user_id", nullable = false) @CollectionTable(name = "conversation_user", joinColumns = @JoinColumn(name = "conversation_id", nullable = false)) private List<String> usersIds; } Is possible to find conversation entity by spring's repository by exact matching of user ids? For instance I have these entities: id | user_ids ------------------------------------------