bagofstrings
public interface ItemRepository extends JpaRepository<Item, Long> {
...
Set<String> findImagesNative(Long id);
}
Need to update return type "Collection<String>" as in Item
public class MappingCollectionsSpringDataJPATest {
...
Set<String> images = itemRepository.findImagesNative(item.getId());
...
}
Need to update type "Collection<String>" as well
Thanks!