内部类作为spring-data-repository

时间:2014-04-23 12:09:00

标签: spring-data

似乎spring-data只为顶层定义的接口构建存储库。例如

public interface EmployeeRepository extends PagingAndSortingRepository<Employee, Long> {

}

效果很好但是如果我把它嵌入到一个类中,例如

public class Repositories {
    public static interface EmployeeRepository extends PagingAndSortingRepository<Employee, Long> {

    }
}

我找不到任何关于这种限制的文件。所以我的问题是:是否可以将spring-data-repositories定义为内部类?

1 个答案:

答案 0 :(得分:11)

您应该将considerNestedRepositories布尔值设置为true。