java - Spring/Hibernate/Flex = Unknown Entity -
i having bit of trouble spring+hibernate throwing error org.springframework.orm.hibernate3.hibernatesystemexception: unknown entity: com.rottmanj.domain.user.useraccount; nested exception org.hibernate.mappingexception: unknown entity: com.rottmanj.domain.user.useraccount i have debugged code , have researched issue, appears normal posted fixes issue not work me. appreciated. i have dao should save correctly, instead throws error above. @override public useraccount save(useraccount obj) { list<useraccount> userlist = template.findbyexample(obj); try { if (!userlist.isempty()) { throw new exception( "a user these credentials exists. please try again."); } else { template.saveorupdate(obj); } } catch (exception e) { logger.debug(e.tostring()); } return obj; } this dao called service below, exposed remoting destination. @service @remotingdestination(channels = {...