-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Provide a way to customize ObjectReader
/ ObjectWriter
used by end points
#33
Comments
The way this is implemented is as follows:
This basically allows for specifying a modifier to do any and all customization necessary. Assignment has to be made on per-call basis for now. |
Implemented for 2.3.0. |
Hi Tatu: this is awesome; thanks! Can you cut a branch / mvn release of 2.3 so I can give it a whirl? |
I can do maven deploy of the snapshot tonight. |
Ok I pushed 2.3.0-SNAPSHOT of jackson-databind (jackson-core was already done), this project. So that should work. |
Thanks! Looking great on our end so far. Do you have a plan to do a 2.3 release (ie: non-snapshot)? |
Yes, hope is to get things finalized soon (within a week or two). 2.3.0 has dragged on for quite a while, but all the pieces are in now. |
2.3.0 was just released on November 14th, 2013. |
How does that fit with the caching mechanisms? It seems the key used to cache the writer/reader is computed from annotations and type. |
@renaudcerrato It should work fine as information is passed using |
(note: inspired by #32)
It would be nice to be able to customize configuration of
ObjectReader
used for reading content via JAX-RS, and configuration ofObjectWriter
used for writing.This functionality should be accessible from code outside of JAX-RS provider implementation.
The text was updated successfully, but these errors were encountered: