I have problem understanding how to use selection in JSF 2 with POJO effectively.
Im thinking a simple approach like this :
<h:selectOneMenu value="#{memoPlusBean.filterWarehouse}"
id="idWarehouse" required="true">
<f:selectItem itemLabel="Choose one .." noSelectionOption="true" />
<f:selectItems value="#{memoPlusBean.warehouseList}" />
</h:selectOneMenu>
And in my managedbean, it is like this (notice i expect a selectitem for the selected value) :
@Named
@SessionScoped
public class MemoPlusBean {
private SelectItem filterWarehouse;
private List<SelectItem> warehouseList;
This is how the warehouseList got populated in the managedbean (notice that i use the entity pojo as the value of the selectitem object) :
List<MstWarehouse> entityWarehouseList = memoPlusService.getWarehouseList();
for (MstWarehouse entityMstWarehouse : entityWarehouseList) {
warehouseList.add(new SelectItem(entityMstWarehouse, entityMstWarehouse.getName()));
}
But this fails with the following error for the selectOneMenu component :
Conversion Error setting value 'org.albertkam.entity.MstWarehouse@cdfbaacd' for 'null Converter'.
I was hoping that JSF could just set the correct SelectItem object to my managedbean. Wrapping my POJO/Entity inside the SelectItem was meant to skip building a Converter for my Entity.
Do i really have to use a Converter whenever i want to make use of POJO/Entity for my selectOneMenu ?
The ideal thing is that i could just use my list of Entity objects, somehow make it into a list of selection items, and the submitted value is the entity object that originates from the list of selection items.
And if i have really to use a converter, can you suggest a practical way of doing it ? Because i think basically the way of doing this is :
- Create a Converter class for the entity
- Overriding the getAsString <-- this will not be used, since the SelectItem's label property will be used instead to display the text in the selection dropdown combobox
- Overriding the getAsObject <-- this will be used to return the correct SelectItem or Entity/POJO object depending on the type of the selected field defined in the ManagedBean.
Overriding the getAsObject <-- This is the part that got me confused because, what is the efficient way to do this .. I can imagine having the string value, and how to get the associated entity object ?
- Should i query the entity object from the service object based on the string value and return the entity ?
- Or perhaps somehow i can access the list of the entities that form the selection items, loop them to find the correct entity, and return the entity ?
Could you please share how do you usually do this ?