Я хотел бы написать такой запрос (я знаю, что он не работает).
@Component
public interface CountryRepository extends CrudRepository<Country, Integer> {
@Query("select c from Country c " +
"where c IN (:countriesCustom)")
List<GfcaMtps> findByCountryPkAndAliceIdIsNull(List<CountryCustomPk> countriesCustom);
}