Package org.jrest4guice.persistence.jpa

Examples of org.jrest4guice.persistence.jpa.EntityManagerInfo


  @Override
  public Object invoke(MethodInvocation methodInvocation) throws Throwable {
    log.debug("[JpaLocalTransactionInterceptor]进入=》"+methodInvocation.getMethod().getName());

    EntityManagerFactoryHolder emfH = GuiceContext.getInstance().getBean(EntityManagerFactoryHolder.class);
    EntityManagerInfo entityManager = emfH.getEntityManagerInfo();
   
    Method method = methodInvocation.getMethod();
    Transactional transactional = method.getAnnotation(Transactional.class);
    if(transactional == null){
      transactional = method.getDeclaringClass().getAnnotation(Transactional.class);
    }
   
    TransactionalType type = transactional.type();
    if(type != TransactionalType.READOLNY){
      entityManager.setNeed2ProcessTransaction(true);
    }
   
    final EntityTransaction transaction = entityManager.getEntityManager().getTransaction();
   
    if(transaction.isActive()){
      return methodInvocation.proceed();
    }
View Full Code Here


    try {
      result = invocation.invoke();

      if(PersistenceGuiceContext.getInstance().isUseJPA()){
        EntityManagerFactoryHolder emfH = GuiceContext.getInstance().getBean(EntityManagerFactoryHolder.class);
        EntityManagerInfo entityManager = emfH.getEntityManagerInfo();
        jpaTS = entityManager.getEntityManager().getTransaction();
        need2ProcessTransaction = entityManager.isNeed2ProcessTransaction();
      }else if(PersistenceGuiceContext.getInstance().isUseHibernate()){
        SessionFactoryHolder sessionFH = GuiceContext.getInstance().getBean(SessionFactoryHolder.class);
        SessionInfo session = sessionFH.getSessionInfo();
        hbTS = session.getSession().getTransaction();
        need2ProcessTransaction = session.isNeed2ProcessTransaction() && !hbTS.wasCommitted();
View Full Code Here

TOP

Related Classes of org.jrest4guice.persistence.jpa.EntityManagerInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.