I added a new method to my DAO that uses a where clause as follows...

public List getUploadedDatasByRegion(String region) {

            return getHibernateTemplate().find("from UploadedData where
region=?",region);

 

Hibernate returns two rows but the action shows null...

UploadedDataManager mgr =
(UploadedDataManager)getBean("uploadedDataManager");

List datas = mgr.getUploadedDatas(uploadedData);

 

... so I am guessing I don't have Spring setup correctly? All other CRUD
operation work though! Any help would be greatly appreciated!!

 

Clark

 

Reply via email to