Is it actually possible to pass any data between managed components in JSF? If yes, how to achieve this?
Could anyone provide any sample?
|
|
|
There are several ways. If the managed beans are related to each other, cleanest way would be managed property injection. Let assume that Bean1 has the same scope or a broader scope than Bean2. First give Bean2 a Bean1 property:
Then declare Bean1 in
This way the If you don't want to use managed property injection for some reasons, then you can also grab
The Bean1 must however already be declared as managed bean For more info and hints about passing data around inside JSF, you may find this article useful. |
|||
|
|
|
To add to BalusC's answer, if you are using a dependency-injection framework (spring, guice, etc.), or if using JSF 2.0, you can have one managed bean set into the other using just:
(or the appropriate annotation based on your DI framework) |
||||