Jetty6.1とWeld2.0でGWTアプリを実行しています。次のコードを取得しました:
@SessionScoped
public class SessionContext implements Serializable {
@Inject
private HttpSession httpSession;
public SessionContext() {
super();
//at this point httpSession is null
}
}
何が欠けていますか、なぜHttpSessionが挿入されないのですか?参照によるとInjecting the HttpSession will force the session to be created.