-
Notifications
You must be signed in to change notification settings - Fork 320
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
Increase integration potential of msgpack-jackson #867
Comments
@extbe Which |
The one that accepts public JsonParser createParser(Reader r) throws IOException, JsonParseException {
//...
} |
@extbe Reader is for char stream while MessagePack is a binary format. So, I don't think Reader works well with MessagePack. |
@komamitsu This is what I'm trying to solve. I'm trying to integrate Feign, Jackson and MessagePack. MessagePack and Feign both provide Jackson integration. Feign relies on Feign is a good declarative wrapper for HTTP clients and MessagePack is a good binary format, so I would like to make them compatible. Initially I was thinking that the correct way is to support that method in Since |
I guess it's true only when using the bundled I recommend creating a separate integration library like https://github.com/komamitsu/retrofit-converter-msgpack, as I think |
Hello MessagePack Team!
I use MessagePack Jackson integration in my project and have an issue integrating it with other libraries that rely on Jackson API.
The
MessagePackFactory
overrides only a part ofJsonFactory#createParser
methods which limits the integration potential because not all libraries create parser fromInputStream
orbyte[]
.What do you think about expanding the list of overriden
createParser
methods and thus increasing the integration potential?The text was updated successfully, but these errors were encountered: