Spring数据1.7.1中是否支持deleteBy?

时间:2015-01-17 21:28:21

标签: spring-data

http://docs.spring.io/spring-data/jpa/docs/current/reference/html/

的Spring doc说

最新的Spring Data(v1.7.1)似乎支持它。但是,我在Eclipse中不断收到以下错误:

Invalid derived query! No property delete found for type MyClass.

MyClass有一个名为" Other"我有以下内容:

public interface MyClassRepository extends CrudRepository<MyClass, Long> {

    Long deleteByOther(String other);

}

我做错了什么?

感谢您的帮助!

1 个答案:

答案 0 :(得分:1)

如果您只在IDE中收到此错误,而不是在构建时收到此错误。您可能需要禁用IDE错误

Eclipse的

窗口---&gt;偏好 - &gt; Spring - &gt; validation - &gt;数据验证器 - &gt;无效的派生查询。

对于STS

春天 - &gt;项目验证员 - &gt;数据验证器 - &gt;无效的派生查询

这里要么取消激活验证,要么将其配置为产生警告而不是错误