Reputation: 22847
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?
Upvotes: 7
Views: 16701
Reputation: 1108632
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.
Upvotes: 10
Reputation: 6810
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);
}
Upvotes: 1