3

JUnit 4 テストで CDI を使用できるようにCDI-Unit JARhttp://jglue.org/cdi-unit/を使用しています。EJB を注入し、オブジェクトを永続化するメソッドを呼び出しましたClientが、次のエラーが発生します。

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

私のステートレス EJB (OperationsEJB.java):

@Stateless
public class OperationsEJB {

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

    public void addClient(Client client) {

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

        }
    }
}

私の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);
    }

}

私はMavenを使用していません。ダウンロードしましたweld-se-core-2.3.0.Final.jarが、別のエラーが発生しました:

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

編集 :

今私はMavenを使用しています.これは私のJUnitテストコードです:

OpTest.java :

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

    @Inject
    OperationsEJB ejb;

    @Test
    public void test() {


        assertNotNull(ejb);
    }

}

これが私のEJBです:

@Stateless
public class OperationsEJB {

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

    public void addClient(Client client) {

        em.persist(client);
    }
}

テストを実行すると、次のエラーが発生します。

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.

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]

前もって感謝します。

4

1 に答える 1