Beanのような中心点でコンポーネントのイベントリスナーを登録する方法はありますか?
このようなことは可能ですか?
@PostConstruct
public void setup() {
FacesContext facesContext = FacesContext.getCurrentInstance();
UIViewRoot view = facesContext.getViewRoot();
view.getComponentByName("toolBar:save").addActionListener(com.sample.SaveListener);
view.getComponentByName("form:save").addActionListener(com.sample.SaveListener);
}