找不到即时类型的属性描述!在Spring Data JPA中

时间:2018-10-02 07:07:22

标签: hibernate spring-boot spring-data-jpa spring-data

我有一个SpringBoot 2.0.5.RELEASE应用程序。在我有一个具有Instant属性的对象的地方:

private Instant dateReceived;

CrudRepository界面中,我创建了此方法:

HotelEvent findFirstbyHotelAndLatitudeNotNullAndLongitudeNotNullOrderByDateReceivedDesc(Hotel hotel);

但是当我启动应用程序时。我收到此错误:

No property desc found for type Instant! Traversed path: HotelEvent.dateReceived.

1 个答案:

答案 0 :(得分:1)

您有错字:findFirstby应该是findFirstBy