Cjxcz Odjcayrwl
Cjxcz Odjcayrwl

Reputation: 22847

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?

Upvotes: 7

Views: 16701

Answers (2)

BalusC
BalusC

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.

See also:

Upvotes: 10

flash
flash

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

Related Questions