How to retrieve spring data repository instance for given domain class?(如何检索给定域类的弹簧数据存储库实例?)
问题描述
给定某个类 Bar
中所有 Spring 数据存储库的列表:
Given the list of all spring data repositories in some class Bar
:
@Autowired
private List<Repository> repositories;
如何在上述列表中找到现有域类 Foo
的存储库?
How can I find the repository for an existing domain class Foo
in the above list?
假设存在以下情况:
@Entity
public class Foo {
...
}
和
public interface FooRepository extends JpaRepository<Foo, String> {}
推荐答案
Spring Data Commons 包含一个类 Repositories
,它采用 ListableBeanFactory
来查找其中定义的所有存储库 bean并公开一个 API 以按域类获取这些实例(通过 ....getRepository(Class<?> type)
).
Spring Data Commons contains a class Repositories
that takes a ListableBeanFactory
to find all repository beans defined in it and exposes an API to obtain these instances by domain class (through ….getRepository(Class<?> type)
).
应谨慎使用此类.由于存储库实例正在进行一些重要的代理生成,因此您必须确保在 ApplicationContext
创建期间尽可能晚地创建 Repositories
实例.首选方式是实现ApplicationListener
并通过监听ContextRefreshedEvent
来创建实例.
This class should be used with care. As there's some serious proxy generation going on for the repository instances you have to make sure the Repositories
instance is created as late as possible during the ApplicationContext
creation. The preferred way is to implement ApplicationListener
and create the instance by listening to the ContextRefreshedEvent
.
如果您正在编写 Web 应用程序,使用 Repositories
最安全的方法是在 ContextLoaderListener 创建的
code> 并放置 ApplicationContext
中引导存储库Repositories
(参见 参考文档 Spring MVC 了解详情.
In case you're writing a web application, the safest way to use Repositories
is by bootstrapping the repositories in the ApplicationContext
created by the ContextLoaderListener
and place the Repositories
(see the reference documentation of Spring MVC for details.
这篇关于如何检索给定域类的弹簧数据存储库实例?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何检索给定域类的弹簧数据存储库实例?
基础教程推荐
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 降序排序:Java Map 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01