GET Parameter in JSF

You can read GET parameters with the RequestParameterMap as follows:

final String id = FacesContext.getCurrentInstance()
  .getExternalContext().getRequestParameterMap().get("id");

Leave a Comment