似乎spring-data只为顶层定义的接口构建存储库。例如
public interface EmployeeRepository extends PagingAndSortingRepository<Employee, Long> {
}
效果很好但是如果我把它嵌入到一个类中,例如
public class Repositories {
public static interface EmployeeRepository extends PagingAndSortingRepository<Employee, Long> {
}
}
我找不到任何关于这种限制的文件。所以我的问题是:是否可以将spring-data-repositories定义为内部类?