我使用的是自定義的Spring數據存儲庫實現/擴展(示例here之一),但我仍想使用Optionals進行基本操作 - 下面(例如對於蒙戈或Elasticsearch):spring-data both:自定義存儲庫和開箱即用的optionals
public interface DomainRepository extends MongoRepository<Domain, Long>, DomainRepositoryCustomAnyName {
Optional<Domain> findOne(Long id);
}
在不需要FPGA實現的是對我自己的方法,我DomainRepositoryImpl類(實現DomainRepositoryCustomAnyName)。
這是否有可能?
目前,我發現了一個異常(同爲一個示意我應該實現方法在我DomainRepositoryImpl類):Caused by: org.springframework.data.mapping.PropertyReferenceException: No property findOne found for type Domain