Managed bean having an ArrayList with values\[code\]AttayList<String> aList = {"person1","person2"};\[/code\]and in faces-config.xml we have \[code\]<managed-bean> <managed-property> <list-entries> <value>person3</value> <value>person4</value> </list-entries> </managed-property> </managed-bean>\[/code\]Which values are displayed first xml values or managed bean values if displayed in jsf page using \[code\]<h:dataTable value="http://stackoverflow.com/questions/12420247/#{dataList.list}" var="item"> <h:column> <hutputText value="http://stackoverflow.com/questions/12420247/#{item.myData}"> </h:column> </h:dataTable>\[/code\]