I have a repository:
public interface ItemRepository extends PagingAndSortingRepository<Item, Long> {
List<Item> findByNameContainingIgnoreCase(@Param("name") String name);
}
I would like the find method to accept a list of words and find items which contain all words in their name. Something like:
List<Item> findByNameContainingAllIgnoreCase(@Param("name") String[] name);
Is this possible?