連携ターゲットが Faces ポートレットである場合、Faces アクションを含めるためにターゲット・ページは必要ありません。 これは、設計上の選択です。ターゲット Faces ページで予想される入力値のタイプが 1 つ だけの場合、ターゲット・ページを Faces アクションに関連付ける必要はありません。
この方法で連携ターゲットを使用可能にする手順は、次のとおりです。
public TicketList getTicketList() { if (ticketList == null) { ticketList = (TicketList) getFacesContext().getApplication().createValueBinding("#{ticketList}").getValue(getFacesContext()); String customerId = (String)getRequestParam().get("customerId"); if (customerId != null) { ticketList.setCustomerId(customerId); } } return ticketList; }