简体   繁体   中英

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?

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:

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);
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM