Re: [jackson-user] deserialization context and path parameters in an http context

2017-03-01 Thread Tatu Saloranta
Jackson databind has no idea where calls comes from, so by default no. JAX-RS provider could theoretically pass this information, but this has not been wired. I think you could build something using `ObjectReaderModifier` and `ObjectReaderInjector` to pass information from endpoint, using

[jackson-user] deserialization context and path parameters in an http context

2017-03-01 Thread Julien Valéry
Hi all, Using jackson I wonder if there is a manner to retrieve context of some query parameters while deserializing in a rest api service context. We got a rest api with some path parameters and I would need to access it while deserializing. /path/{SomeId}/path2/{AnotherId} public MyObject