There is a Rest service that produces JSON data. I was wondering what is an efficient way to parse the data into a Java POJO without the client being aware of the data that is coming in?
For example, I am aware that I can use Jackson with a predefined POJO class on the client so Jackson can generate the Object, however is there a framework available that can parse the JSON and create the POJO class as well?
The purpose is to maximize decoupling between client and Rest service.
The client will be a Java application.