私のアプリケーションは、 をサポートしJOnAS 5.2.2
ていないにデプロイされています。その上で使用する必要があります。アプリケーションのWAR部分での使用方法は知っていますが、一部はわかりません。CDI
EJB
CDI
EJB
CDI
EJB
サポートしていないコンテナCDI
にアプリケーションのサポートを追加する方法はありますか?EJB
私の上司は、サーバーをサポートするバージョンにアップグレードしません。
[編集] 私は CDI-WELD を使用しています: 私は解決策の始まりを見つけました:
//CDI uses an AnnotatedType object to read the annotations of a class
AnnotatedType<DAOTest> type = beanManager.createAnnotatedType(DAOTest.class);
//The extension uses an InjectionTarget to delegate instantiation, dependency injection
//and lifecycle callbacks to the CDI container
InjectionTarget<DAOTest> it = beanManager.createInjectionTarget(type);
//each instance needs its own CDI CreationalContext
CreationalContext ctx = beanManager.createCreationalContext(null);
//instantiate the framework component and inject its dependencies
test = it.produce(ctx); //call the constructor
System.out.println("instance" + test);
it.inject(test, ctx); //call initializer methods and perform field injection
it.postConstruct(test); //call the @PostConstruct method
test.test();
it.preDestroy(test); //call the @PreDestroy method
it.dispose(test); //it is now safe to discard the instance
ctx.release(); //clean up dependent objects
私は次のように DAOTest に別のものを注入してテストしました:
@Named
@Dependent
public class DAOTest implements Serializable {
private static final long serialVersionUID = 1L;
@Persitence(value = "CDI-ejb")
private EntityManager em;
@Inject
private User user;
public void test(){
System.out.println(user.getName());
em.getClass();
}
public EntityManager getEm() {
return em;
}
public void setEm(EntityManager em) {
this.em = em;
}
public DAOTest() {
// TODO Auto-generated constructor stub
}
}
動作しますが、EntityManager は @PersistenceContext で解決されません。@Produce アノテーションを使用する必要があると思いますが、その方法がわかりません。