Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get request parameters from view scoped JSF bean?

I have the view scoped bean which should access on init (@PostConstruct) the values from request URL and store them within its lifetime.

I've learned, that in order to get the values from http request, I need the following code:

@ManagedProperty("#{param.x}")
private int x;

Which gives me the value of attribute X. However, I can do that trick only in request scoped bean. Injecting this bean via @ManagedProperty to my bean also will not work. So, how to get access to that bean in view scoped bean?

like image 914
Danubian Sailor Avatar asked Nov 21 '12 14:11

Danubian Sailor


2 Answers

Use <f:viewParam> in the view.

<f:metadata>
    <f:viewParam name="x" value="#{bean.x}" />
</f:metadata>

Additional advantage is that it allows fine grained conversion and validation.

Note that the set value is not available during postconstruct. So if you'd like to perform initialization based on the value, use either a converter or preRenderView listener.

See also:

  • ViewParam vs @ManagedProperty(value = "#{param.id}")
like image 82
BalusC Avatar answered Nov 03 '22 01:11

BalusC


I had the same issue, I've had success by retrieving the value programmatically from the FacesContext:

@PostConstruct
public void init() {
    String value = FacesContext.getCurrentInstance().getExternalContext().getRequestParameterMap().get(key);
}
like image 32
flash Avatar answered Nov 03 '22 01:11

flash