我有一个人员存储库如下
@RepositoryRestResource
public interface PersonRepository extends Repository<Person, String> {
List<Person> findAll();
default List<Person> findNewPersons() {
return findByStartDateAfter(LocalDate.now().minusMonths(3));
}
List<Person> findByStartDateAfter(LocalDate date);
}
我无法通过 rest 公开默认方法。有没有办法在不创建 repo 实现的情况下做到这一点?