Kiva
Kiva

Reputation: 9363

Get http variable JSF

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.

Upvotes: 2

Views: 1540

Answers (1)

KV Prajapati
KV Prajapati

Reputation: 94653

May be this will help you,

Map requestMap = FacesContext.getCurrentInstance().getExternalContext().getRequestParameterMap();
String para1 = (String) requestMap.get("para1");

Upvotes: 3

Related Questions