I have a backing bean, and I'd like to load up a few lists when the bean is instantiated, so that the list may be used in a dropdown.
Is there a method that only gets called when the bean is first made?
|
I have a backing bean, and I'd like to load up a few lists when the bean is instantiated, so that the list may be used in a dropdown. Is there a method that only gets called when the bean is first made? |
|||
|
|
You could use a static initializer:
Or if they aren't static lists then an initializer block:
EDIT* Remember that these backing beans are just POJOs and work like any other Java object. You can set up faces-config.xml like such:
Personally I find it easier to just us an initializer block. That's what they are for. |
|||||
|
|
Another method is to use the @PostConstruct attribute to have a method do the initializing for you once Spring/JSF has made the bean for you. Eg:
|
|||
|
|
|
If you want a purely declarative list of values, the faces-config.xml offers some options:
This stuff is covered in section 5.3 The Managed Bean Facility of the JSF 1.2 spec. |
|||
|
|
|
The JSF-y way of doing this is to bind a |
|||