我想通过以懒惰的方式初始化所有Spring数据存储库来加快应用程序的启动时间。但到目前为止,我无法使用spring-annotation @Lazy配置父接口,并且所有特定的存储库都被懒惰地初始化。 这意味着,我必须将@Lazy放到100多个班级。有没有其他方法可以实现这一目标?
@Lazy
public interface AbstractRepository<T> extends Repository<T, Long> {}
public interface ThingRepository extends AbstractRepository<Thing> {}