如何在查询方法中使用 Spring Data 中的“exists”关键字?
我想要一个这样的方法:
public interface ProfileRepository extends JpaRepository<Profile, Long> {
boolean existsByAttribute(String attribute);
}
其中Attribute是Profile的一个字段。
一种解决方法是使用custom-implementation。但附录将存在定义为关键字。有人可以给我一个如何使用这个关键字的例子吗?