如何使用多个数据源设置 spring data jpa
我正在使用 Spring Data Jpa 版本 1.0.0.M2 这里是 url: http://static.springsource.org/spring-data/data-jpa/docs/1.0.0.M2/reference/pdf/spring-data-jpa-reference.pdf
一切都承诺非常简单又美好,但是当谈到它分解了两个数据源。问题是如何设置两个数据源? JpaRepository 会自动搜索 EntityManager,当发现两个以上时会抛出异常。
如果您对 EntityManager 以及如何设置 spring data jpa 有任何想法,请发表回复。非常感谢您的帮助!
I am using Spring Data Jpa version 1.0.0.M2 here is the url:
http://static.springsource.org/spring-data/data-jpa/docs/1.0.0.M2/reference/pdf/spring-data-jpa-reference.pdf
All is promised to be very simple and nice, but when it comes to two datasources it breaks down. The question is how to setup with two data sources? The JpaRepository automatically searches for EntityManager, when it finds more than two it throws exceptions.
If you have any idea with EntityManager and how to setup the spring data jpa, please post a reply. Your help is truly appreciated!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用包装两个数据源的动态数据源,如下所述:
http://blog.springsource.com/2007/01/23/dynamic-datasource-routing/
You can use a dynamic datasource that wrap your two datasources, as explained here:
http://blog.springsource.com/2007/01/23/dynamic-datasource-routing/
您是否希望将“EntityManager-A”与 Spring Data JPA 一起使用,并将“EntityManager-B”用于另一个数据访问层?
标记
Are you looking to use 'EntityManager-A' with Spring Data JPA and 'EntityManager-B' for another data access layer?
Mark