Java EE JUnit non funziona con CDI-Unit durante l'utilizzo di EJBs


Sto usando il JAR CDI-Unit http://jglue.org/cdi-unit/ per poter usare CDI nei miei test JUnit 4, ho iniettato il mio EJB e ho chiamato un metodo per mantenere un oggetto Client, ma ottengo il seguente errore :

java.lang.NoClassDefFoundError org/jboss/weld/environment/se/Weld

Il mio EJB senza stato (OperationsEJB.java) :

@Stateless
public class OperationsEJB {

    @PersistenceContext(unitName="db_PU")
    EntityManager em;

    public void addClient(Client client) {

        try {
            em.persist(client);
        } catch (Exception e) {

        }
    }
}

Il mio test JUnit :

import static org.junit.Assert.*;
import javax.inject.Inject;
import org.jglue.cdiunit.AdditionalClasses;
import org.jglue.cdiunit.CdiRunner;
import org.jglue.cdiunit.ejb.SupportEjb;
import org.junit.Test;
import org.junit.runner.RunWith;

@RunWith(CdiRunner.class)
@AdditionalClasses(OperationsEJB.class)
@SupportEjb
public class TestApp {

    @Inject
    OperationsEJB ejb;

    @Test
    public void test() {

        Client c1 = new Client();
        c1.setNomClient("client1");

        ejb.addClient(c1);

        assertNotNull(c1);
    }

}

Non sto usando Maven, ho scaricato weld-se-core-2.3.0.Final.jar e ho ricevuto un altro errore:

java.lang.NoClassDefFoundError: org/jboss/weld/environment/ContainerInstanceFactory

MODIFICA:

Ora sto usando Maven, questo è il mio codice di test JUnit :

OpTest.java :

@RunWith(CdiRunner.class)
@AdditionalClasses({OperationsEJB.class})
@SupportEjb
public class OpTest {

    @Inject
    OperationsEJB ejb;

    @Test
    public void test() {


        assertNotNull(ejb);
    }

}

Ecco il mio EJB:

@Stateless
public class OperationsEJB {

    @PersistenceContext(unitName = "db_PU")
    EntityManager em;

    public void addClient(Client client) {

        em.persist(client);
    }
}

Quando eseguo il test ottengo questo errore:

Oct 18, 2015 3:59:04 PM org.jboss.weld.bootstrap.WeldStartup <clinit>
INFO: WELD-000900: 2.2.9 (Final)
Oct 18, 2015 3:59:05 PM org.jboss.weld.bootstrap.WeldStartup startContainer
INFO: WELD-000101: Transactional services not available. Injection of @Inject UserTransaction not available. Transactional observers will be invoked synchronously.
Oct 18, 2015 3:59:06 PM org.jboss.weld.event.ExtensionObserverMethodImpl checkRequiredTypeAnnotations
WARN: WELD-000411: Observer method [BackedAnnotatedMethod] org.jglue.cdiunit.internal.TestScopeExtension.processAnnotatedType(@Observes ProcessAnnotatedType<Object>) receives events for all annotated types. Consider restricting events using @WithAnnotations or a generic type with bounds.
Oct 18, 2015 3:59:06 PM org.jboss.weld.event.ExtensionObserverMethodImpl checkRequiredTypeAnnotations
WARN: WELD-000411: Observer method [BackedAnnotatedMethod] public org.jglue.cdiunit.internal.ejb.EjbExtension.processAnnotatedType(@Observes ProcessAnnotatedType<Object>) receives events for all annotated types. Consider restricting events using @WithAnnotations or a generic type with bounds.

E l'errore mostrato nel registro JUnit è:

org.jboss.weld.exceptions.DeploymentException: WELD-001408: Unsatisfied dependencies for type OperationsEJB with qualifiers @Default
  at injection point [UnbackedAnnotatedField] @Inject @EJB proj.OpTest.ejb
  at proj.OpTest.ejb(OpTest.java:0)
WELD-001475: The following beans match by type, but none have matching qualifiers:
  - Managed Bean [class com.proj.EJB.OperationsEJB] with qualifiers [@EJbQualifier @Any]

Grazie in anticipo.

Author: Jens Piegsa, 2015-10-17

1 answers

Il tipo di sostituzione dell'annotazione di @Ejb rende necessario che il bean che dovrebbe iniettare abbia l'annotazione @Default.

@Stateless
@Default 
public class OperationsEJB {

Dovrebbe aiutare.

Forse: ejb-cdi-unit potrebbe aiutare. abbiamo avuto problemi simili e abbiamo creato un modulo aggiuntivo in cima a cdi-unit per questo.

 0
Author: aschoerk, 2017-07-13 15:03:14