how to get http get request params in jsf 2.0 bakcing bean?
Posted
by Marko
on Stack Overflow
See other posts from Stack Overflow
or by Marko
Published on 2010-06-06T13:14:24Z
Indexed on
2010/06/06
13:22 UTC
Read the original article
Hit count: 337
Hi all,
I having trouble with passing http get parameters to jsf 2.0 backing bean. User will invoke URl with some params containing id of some entity, which is later used to persist some other entity in db.
whole process can be summarized by fallowing: 1. user open page http://www.somhost.com/JsfApp/step-one.xhtml?sid=1 2. user fills some data and goes to next page 3. user fills some more data and then entity is saved to db with sid param from step one.
I have session scoped backing bean that hold data from all the pages (steps), but I cant pass param to bean property..
any ideas?
© Stack Overflow or respective owner