0
. Solr에 제품 정보를 저장하는 데 사용되는 Product
이라는 엔티티가 있습니다. 내 질문은, 나는 모든 제품 ID를 Productreposirory
에서 얻고 싶습니다. 나는 우리가 ProductEntities의리스트를 반환하는 findAll()
을 사용할 수 있지만 productids 인 List 만 필요하다는 것을 알고있다. SolrCrudRepository 검색 문제 나는 봄 데이터 <code>SolrCrudrepository</code>를 사용하여 봄 부팅 응용 프로그램을 사용하고
public Interface ProductRepository extends SoleCrudrepository<productEntity, Integer){
public List<Integer> getAllProductIDs();
}
우리는 어떻게 SOLR 수집 만 productIDs을받을 수 있나요? 은 항상 빈 결과 집합을 반환
@Query("Select p.id from Product p)
public List<Integer> findAllProductIDS();
로했습니다.