Open lidinh65 opened 1 year ago
bagofstrings
public interface ItemRepository extends JpaRepository<Item, Long> { ... Set<String> findImagesNative(Long id); }
Need to update return type "Collection<String>" as in Item
Collection<String>
public class MappingCollectionsSpringDataJPATest { ... Set<String> images = itemRepository.findImagesNative(item.getId()); ... }
Need to update type "Collection<String>" as well
Thanks!
Found the same issue with bagofstringsorderby
bagofstrings
Need to update return type "
Collection<String>
" as in ItemNeed to update type "
Collection<String>
" as wellThanks!