Joined: Tue Sep 13, 2011 4:49 am Posts: 1
|
Hibernate version 3.2
i have 3 tables and a single pojo is mapped with three in hbm.file with entity-name defined as ::
<class name="com.hr.dto.CandidateRecruitmentDTO" table="TB_SOFT_INTRV_DETAILS" entity-name="softwareObject">
<class name="com.hr.dto.CandidateRecruitmentDTO" table="TB_SOFT_INTRV_DETAILS" entity-name="bpoObject">
<class name="com.hr.dto.CandidateRecruitmentDTO" table="TB_SOFT_INTRV_DETAILS" entity-name="othersObject">
How to fetch data from table based on entity-name as defined in hbm.file. I am using the following qury in DAO class: recruitmentlist = session.createSQLQuery(" FROM NewCandidateRecruitmentDTO as e").addEntity("softwareObject", NewCandidateRecruitmentDTO.class).list();
Its throwing exception ::: org.hibernate.MappingException: Unknown entity: com.ebix.hrms.dto.CandidateRecruitmentDTO
Its quiet Urgent.
|
|