2

I have a question about JSF and GET http request.

How can I get a GET variable in bean managed by JSF ?

I tried to use it but nothing is in the map.

FacesContext.getCurrentInstance().getExternalContext().getRequestMap();

Thanks for your answers.

Kiva
  • 9,193
  • 17
  • 62
  • 94

1 Answers1

3

May be this will help you,

Map requestMap = FacesContext.getCurrentInstance().getExternalContext().getRequestParameterMap();
String para1 = (String) requestMap.get("para1");
KV Prajapati
  • 93,659
  • 19
  • 148
  • 186