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

Posted mobaids

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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基于注解的多数据源的主要内容,如果未能解决你的问题,请参考以下文章

ssh(sturts2_spring_hibernate) 框架搭建之JPA代替hibernate

ssh整合之七注解结合xml形式

门户安全管理(ssh+jpa)

spring注解request和post的区别

基于注解的简单SSH保存用户小案例

理解JPA注解@GeneratedValue