首页 > 代码库 > SSH框架JPA基于注解的多数据源

SSH框架JPA基于注解的多数据源

一、配置文件结构

  1. persistence.xml
  2. applicationContext.xml
  3. 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基于注解的多数据源