In my project, I am exposing a rest service which will forward the request to some other backend as it is (in this case my system works just like a proxy).
Backend also have the rest interface exposed and to call it I can use spring rest template (but I am open to suggestions and other frameworks).
My question is that how could I achieve this if I don't want to map the json to pojo or vice-versa and I just want to forward the exactly same request to backend and exactly same response to client without any transformations?
(I am open to suggestions for change of frameworks if this is not possible with spring)