14

所以我知道我可以编写一个像下面这样的接口,Spring Data 会自动为我生成必要的数据库访问内容。现在我想做的是添加一个新的方法名称,它将计算符合一组标准的实体的数量。

public interface EventRegistrationRepository extends JpaRepository<EventRegistration, String>
{    
    List<EventRegistration> findByUser_EmailAddress(String email);

    int countByEvent_Code(String eventCode);
}

截至目前, countBy 方法会导致此错误:

Caused by: org.springframework.data.mapping.PropertyReferenceException: No property count found for type com.brazencareerist.brazenconnect.model.relational.EventRegistration

我在这里尝试做的正确语法是什么?

4

1 回答 1

18

从刚刚发布的Spring Data JPA 1.4.0.M1 开始,这可以正常工作。

于 2013-06-12T14:16:53.230 回答