EJB - 将上下文数据从JSF传递到EJB

时间:2013-04-22 12:40:25

标签: ejb ejb-3.0 ejb-3.1

A有一个新功能,迫使我将一些新的数据结构传递给我的EJB。

这是一个用户会话上下文,其中包含有关当前用户的一些信息。

如何在不重构我的方法签名和调用的情况下将此数据传递给EJB?

使用ThreadLocal?但是,如果它不在同一个JVM上?

下面有一些代码。你能给我一个小费吗?

/** created at login time, when user put it's credential */
public class UserSessionContext {
    private User current;
    private Company company;
    // getters e setters
}

/** web page controller */
@ManagedBean // at web tier
public class ListCustomersController {

    @EJB
    CustomersRepository customers; // some remote interface

    // getters / setters
    private List<Filters> filters; // from the UI

    /** used in a datatable component */
    public List<Customer> getAll(){
        return customers.getAllWith(filters); // I have no UserSessionContext parameter
    }

}

/** used by web controller */
@Stateless
public CustomersEJB implements CustomersRepository {

    @Inject 
    UserSessionContext currentContext; // injected before call this object

    public List<Customer> getAllWith(List<Filter> filters){

        TypeQuery<Customer> customersQuery = ... //
        customersQuery.setParameter("company",currentContext.getCompany());

        return customersQuery.getResultList();

    }

}

1 个答案:

答案 0 :(得分:0)

没有标准的机制(JSR-149)。 WebSphere Application Server具有Work Area Service编程模型扩展,可用于以这种方式传播上下文。