I'm currently developing a RESTful API in Java using Jersey for an old, quite complex system. We are looking to support two forms of input - JSON and XML.
At this point I'm considering two ways of implementing the API - the first is to create a series of annotated POJOs to which the incoming request can be mapped to.
The second would be to convert any XML requests to JSON and parse the JSON manually.
Personally, the second way seems more flexible to me at this point, especially since some of the objects in the system are very complicated.
Basically I'm wondering if there are any benefits towards the first options (or drawbacks from the second) that I should consider?
EDIT: To elaborate a bit more, in my case, there are tons of classes which can't be annotated at this stage (this application has been actively developed for over ten years). If I'm going to go down the POJO route, I'm going to have to create a whole bunch of new 'serialization' objects whose purpose is to basically just to serialize to and from XML/JSON.
These classes will need to be managed to be kept up to do date with the actual model classes (of which there may be multiple representing the same object) which is why I'm thinking of going down the 'manual' method.
Were this a new project, I would definitely consider the use of annotations, but given the current situation, I'm unsure as to whether it is the best option.