im gettting the following error
org.hibernate.HibernateException: No Session found for current thread at org.springframework.orm.hibernate4.SpringSessionCont
change your DAO 's annotation with @Repository
@Repository public class ProfileDao { . . . }
and then make your service method @Transactional for example like this
@Transactional public List getRetailerByRetailerNumber(String retailerNo) {}