Spring Data JPA PropertyReferenceException?

时间:2015-04-28 11:48:00

标签: spring-data-jpa

我使用Spring Data JPA 1.8.0.RELEASE

实体Attachment有一个名为relate_id

的属性

我在findByRelate_id(String rid)中添加了一个方法Repository

但我有一个例外:

Caused by: org.springframework.data.mapping.PropertyReferenceException: No property relate found for type Attachment!

我真的需要我的字段名称为relate_id,而不是更改为relateId,我不希望自己写@Query(...)

如何解决它?

1 个答案:

答案 0 :(得分:1)

尝试添加另一个_来逃避它,因为它是Spring Data中的保留字符。

findByRelate__id(String rid)

查看this similar post