how to populate combo boxes in the jsp pages

hi,I want to know best practise for populateing combo boxes(from Db) in jsp pages. Should I user session facade or directly go to DAO.TIAAshwani
[172 byte] By [ash_ka] at [2007-9-28 19:36:13]
# 1
Both the ways are valid, It depends on the performance you are looking for.
ksanjaykrishnaa at 2007-7-12 18:15:39 > top of Java-index,Other Topics,Patterns & OO Design...
# 2

No I think,Just for populating a combo if one goes through session facade then , it will be performance kill. While If I by pass , I am violating the purpose of the facade which is used to provide simple interface to client.

So I want to know what most of the other people to ?

Isn't ?

Regds

Ashwani

ash_ka at 2007-7-12 18:15:39 > top of Java-index,Other Topics,Patterns & OO Design...
# 3
In my of my previous projects i had used a DAO to populated the combo boxes, i.e. A java object reads the data from the data base and in the jsp use that object to fill the combo boxes
ksanjaykrishnaa at 2007-7-12 18:15:39 > top of Java-index,Other Topics,Patterns & OO Design...