Upon executing a http request on my web serivce, I get a javax.ws.rs.core.Response object. When I call the getEntity method on the Response object I get an input stream, which is a string representation of JSON. Does anyone know how I can/should convert this string into a java object? Since, I'm using CXF can I use the JAXBContext? Or must I create a custom message body reader? Thanks.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||
|
|
Jackson has built-in JAX-RS support. |
|||
|
|
|
There are some libraries to parse json string into java objects: This link is very usefull! |
||||
|
|