0
我想自動查找EJB實例並將其從EJB容器注入到List中。例如:通過通用接口將EJB注入列表
@EJBs
List<MyCommonInterface> beans;
或
List<MyCommonInterface> beans;
public MyClass() {
beans = (List<MyCommonInterface>) context.findBeansByInterface(MyCommonInterface.class);
}
這可能嗎?