Currently i am developing webservices using CXF framework. This webservices will do my DB operations by making a call to my DAO layer. I know by default CXF is using JAXB for databinding. For example if i wants to create a new person i am having my webservice like follows.
public Response createPerson(CreatePersonRequest request)
{
// Call to hibernate DAO class
personDao.create()
}
Here CreatePersonRequest is my DTO class(JAXB annotated) , before i make a call to my DAO class i wants to convert my DTO class object to Hibernate Entity object. I wants to populate my hibernate entity object based on the XML i received from my webservice. But the XML i am receiving here will fit into CreatePersonRequest not to my Person entity object.Because my XML root tag will be not other than this my properties for both classes are same. In short i wants to populate Two different type of POJO objects for the same XML payload.Is there anyway to achieve this one using JAXB ? Please help me.