栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

Spring JPA Hibernate,具有更多数据源

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Spring JPA Hibernate,具有更多数据源

如果您想使用多个

DataSource
Spring + JPA

  1. 创建两个或更多的
    PersistenceUnit
    persistence.xml
  2. 创建
    EntityManagerFactory
    每个
    PersistenceUnit
    spring-beans.xml

在您的DAO类中。

@PersistenceContext(unitName ="JPA_1")private EntityManager em_1;@PersistenceContext(unitName ="JPA_2")private EntityManager em_2;

Conig persistence.xml

<persistence-unit name="JPA_1" type="RESOURCE_LOCAL">....</persistence-unit><persistence-unit name="JPA_2" type="RESOURCE_LOCAL">....</persistence-unit>

配置:spring-beans.xml

<bean id="entityManagerFactory1" >    <property name="persistenceUnitName" value="JPA_1"/>    <property name="jpaVendorAdapter" ref="jpaVendorAdapter"/>    <property name="jpaDialect">        <bean /> <--if it is necessary, replace with hibernate.    </property>    <property name="jpaPropertyMap">        <props> <prop key="eclipselink.weaving">false</prop> <--if it is necessary, replace with hibernate.        </props>    </property>    <property name="loadTimeWeaver">        <bean >        </bean>    </property></bean><bean id="entityManagerFactory2" >    <property name="persistenceUnitName" value="JPA_2"/>    <property name="jpaVendorAdapter" ref="jpaVendorAdapter"/>    <property name="jpaDialect">        <bean /> <--if it is necessary, replace with hibernate.    </property>    <property name="jpaPropertyMap">        <props> <prop key="eclipselink.weaving">false</prop> <--if it is necessary, replace with hibernate.        </props>    </property>    <property name="loadTimeWeaver">        <bean >        </bean>    </property></bean><bean id="jpaVendorAdapter" > <--if it is necessary, replace with hibernate.    <property name="databasePlatform" value="org.eclipse.persistence.platform.database.MySQLPlatform"/>    <!--<property name="databasePlatform" value="org.eclipse.persistence.platform.database.OraclePlatform" />-->    <property name="generateDdl" value="false"/>    <property name="showSql" value="true"/></bean>


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/406379.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号