如何在Servlet中注入ConversationScoped bean

时间:2011-01-28 13:03:27

标签: java servlets cdi jboss-weld

我需要将一个ConversationScoped bean注入一个servlet。我使用标准的简单@Inject标记,并使用cid参数调用servlet,但是当它调用注入的bean中的任何方法时,我得到以下错误:

  

org.jboss.weld.context.ContextNotActiveExceptionWELD-001303范围类型javax.enterprise.context.ConversationScoped

没有有效的上下文

我可以在servlet中注入这些bean,还是只能注入Session和Request scoped bean?

2 个答案:

答案 0 :(得分:1)

在servlet中,上下文是应用程序上下文,这就是你失去对话范围的原因。 这是一个小实用程序类,您可以将其用作匿名类,如果您希望在servlet中支持对话范围,请将请求包装起来...

import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;

import org.jboss.weld.Container;
import org.jboss.weld.context.ContextLifecycle;
import org.jboss.weld.context.ConversationContext;
import org.jboss.weld.servlet.ConversationBeanStore;


public abstract class ConversationalHttpRequest {
    protected HttpServletRequest request;


    public ConversationalHttpRequest(HttpServletRequest request) {
        this.request = request;
    }

    public abstract void process() throws Exception;

    public void run() throws ServletException {
        try {
            initConversationContext();
            process();
        } catch (Exception e) {
            throw new ServletException("Error processing conversational request", e);
        } finally {
            cleanupConversationContext();
        }
    }

    private void initConversationContext() {
        ConversationContext conversationContext = Container.instance().deploymentServices().get(ContextLifecycle.class).getConversationContext();
        conversationContext.setBeanStore(new ConversationBeanStore(request.getSession(), request.getParameter("cid")));
        conversationContext.setActive(true);
    }

    private void cleanupConversationContext() {
        ConversationContext conversationContext = Container.instance().deploymentServices().get(ContextLifecycle.class).getConversationContext();
        conversationContext.setBeanStore(null);
        conversationContext.setActive(false);
    }

}

答案 1 :(得分:0)

如果我们不使用Weld,那么在Java EE的上一个答案中提出的ConversationContext的等价物是什么?