无法使用spring获取eclipselink的EntityManager的活动会话

时间:2012-08-14 13:46:13

标签: spring persistence jpa-2.0 eclipselink aop

我有一个负责执行存储过程的类,当我使用JTA时工作正常...但是因为我在重新部署方面遇到了一些问题,我删除了JTA并且我使用了本地实体管理器和spring:

 <bean id="entityManagerFactoryErp" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
    <property name="persistenceUnitName" value="erpPU"/>
</bean>
<bean id="entityManagerErp" class="org.springframework.orm.jpa.support.SharedEntityManagerBean">
    <property name="entityManagerFactory" ref="entityManagerFactoryErp"/>
</bean> 

现在,当我尝试获取活动会话时,我收到NullPointerException:

public class ExecutadorProcedimentoArmazenado extends BaseDao implements IExecutadorProcedimentoArmazenado {

    public boolean executar(String nomeProcedimento) {
        DataReadQuery query = configurarQuery(nomeProcedimento);
        registro = executarProcedimento(query);
        int resultado = Integer.parseInt(recuperarValorDeSaida("RESULTADO"));
        mensagem = recuperarValorDeSaida("MSGERRO");
        return resultado == 0;
    }
    .
    .
    private Session configurarSessao() {
        JpaEntityManager jpaEntityManager = JpaHelper.getEntityManager(entityManager);
        return jpaEntityManager.getActiveSession();
    }
    .
    .
    .
}

ADDED

问题可能是entityManager没有事务。我正在尝试使用spring aop创建事务,它适用于所有其他类,但不适用于接口IExecutadorProcedimentoArmazenado:

<bean id="entityManagerFactoryErp" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
    <property name="persistenceUnitName" value="erpPU"/>
</bean>

<bean id="entityManagerErp" class="org.springframework.orm.jpa.support.SharedEntityManagerBean">
    <property name="entityManagerFactory" ref="entityManagerFactoryErp"/>
</bean>

<bean id="transactionManagerErp"
      class="org.springframework.orm.jpa.JpaTransactionManager">
    <property name="entityManagerFactory" ref="entityManagerFactoryErp"/>
</bean>

<tx:advice id="txExecutadorProcedimento" transaction-manager="transactionManagerErp">
    <tx:attributes>
        <tx:method name="executar" rollback-for="Exception" propagation="REQUIRED"/>
    </tx:attributes>
</tx:advice>

<aop:config>
    <aop:pointcut id="operacoesExecutadorProcedimento" expression="execution(* com.hrgi.persistencia.IExecutadorProcedimentoArmazenado.executar(..))"/>
    <aop:advisor advice-ref="txExecutadorProcedimento" pointcut-ref="operacoesExecutadorProcedimento"/>
</aop:config>

有人可以解释一下为什么我不能为我调用Session来调用存储过程吗?

2 个答案:

答案 0 :(得分:4)

执行此操作的方法是简单地使用EntityManager注释注入@PersistenceContext并返回代理...

public class ExecutadorProcedimentoArmazenado extends BaseDao implements IExecutadorProcedimentoArmazenado {

  @PersistenceContext
  private EntityManager entitymanager

  private Session configurarSessao() {
    return ((JpaEntityManager) entityManager.getDelegate()).getActiveSession();
  }

如果活动会话为空,则表示没有活动会话。我测试了这个和在交易之外,它给出了一个NPE。在交易中,上面的代码有效。使用Spring 3.1 / Eclipselink 2.0测试。

答案 1 :(得分:0)

在这种情况下,您的容器是Spring,很可能从entityManager.getDelegate()返回null,从而导致jpaEntityManager.getActiveSession()上的NPE。尝试启动事务,或直接从未打开的EclipseLink EntityManagerFactory获取EntityManager。