SSH框架JPA基于注解的多数据源
Posted mobaids
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SSH框架JPA基于注解的多数据源相关的知识,希望对你有一定的参考价值。
一、配置文件结构
- persistence.xml
- applicationContext.xml
- struts.xml
二、具体配置
1、persistence.xml中可配置多个persistence-unit分别不同数据库连接
2、applicationContext.xml中分别配置多套不同id命名的EntityManagerFactory、
transaction-manager、
3、在serviceImp中通过注解不同的@PersistenceContext,使用不同的EntityManager,如下例子:
@PersistenceContext(unitName="appPU") private EntityManager appEntityManager; @PersistenceContext(unitName="managerPU") private EntityManager managerEntityManager;
以上是关于SSH框架JPA基于注解的多数据源的主要内容,如果未能解决你的问题,请参考以下文章