Weld-SE 2.1.2.Finalを使用してBeanを取得し、それをスレッドから呼び出すと、次の例外が発生します。
スレッド "main"での例外org.jboss.weld.context.ContextNotActiveException:WELD-001303:スコープタイプjavax.enterprise.context.RequestScopedのアクティブなコンテキストがありません
私のBeanには@RequestScoopedアノテーションが付けられています。 @ApplicationScopedに注釈を付けると正常に機能しますが、@ RequestScoopedを保持する必要があります。
ここに再生器があります:
public static void main(String[] args) throws Exception {
Weld weld = new Weld();
WeldContainer container = weld.initialize();
final MyPojo pojo = container.instance().select(MyPojo.class).get();
Thread t = new Thread() {
public void run() {
System.out.println(pojo.ping()); // This call fails
}
};
t.start();
t.join();
System.out.println(pojo.ping()); // This call succeed
weld.shutdown();
}
@RequestScoped
public class MyPojo {
public String ping() {
return "pong";
}
}
この動作に遭遇しましたか?これを機能させるためのアイデアはありますか?
この場合、Weldはスレッドに関連付けられているバインドされていないRequestContext( RequestContext )を使用しています。あなたが作成しているスレッドで新しいRequestContextを手動で初期化する必要があります、これは私のために機能します:
public static void main(String[] args) throws Exception {
Weld weld = new Weld();
final WeldContainer container = weld.initialize();
RequestContext requestContext= container.instance().select(RequestContext.class, UnboundLiteral.INSTANCE).get();
requestContext.activate();
final MyPojo pojo = container.instance().select(MyPojo.class).get();
Thread t = new Thread() {
public void run() {
RequestContext requestContext= container.instance().select(RequestContext.class, UnboundLiteral.INSTANCE).get();
requestContext.activate();
System.out.println("1" + pojo.ping());
}
};
t.start();
t.join();
System.out.println("2" + pojo.ping());
weld.shutdown();
}