0
findByプレフィックスの例はたくさんありますが、メソッド名でget prefixを使用してsolrからすべての 'address'フィールドを取得する方法の例やドキュメントが見つかりませんでした。これは私のDAOクラスですspring-data-solrでメソッド名と接頭辞を使用するには?
@Repository
public interface CarDao extends SolrCrudRepository<House,String> {
Page<CarModel>findByNameContainsIgnoreCaseAndConditionAndCountry(String name,String condition,String country, Pageable pageable);
List<String> getAddress();
}
ヘルプがありますか?