-
Notifications
You must be signed in to change notification settings - Fork 369
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
Use newer JSON-P & JSON-B standards as alternative to Jackson, fixes #29 #112
base: master
Are you sure you want to change the base?
Conversation
* | ||
* @author Jan-Willem Gmelig Meyling | ||
*/ | ||
public class JsonNodeBinaryType extends AbstractHibernateType<JsonValue> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This one is better named JsonValueBinaryType
* @author Vlad Mihalcea | ||
* @author Jan-Willem Gmelig Meyling | ||
*/ | ||
public class JsonbJsonSerializer implements JsonSerializer { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should have these classes in the jsonb/util folder as they are specific to JSON processing only.
Looks very good. You should definitely consider porting it. |
I’ll continue my work on the PR :) |
f62b638
to
589e08d
Compare
53bdf6c
to
8135e13
Compare
95ff7d1
to
29f8fd4
Compare
b9f86b7
to
d20c417
Compare
ccf829d
to
df2f9c7
Compare
a2224e9
to
ecf89dc
Compare
aff9872
to
b7efcfb
Compare
Initial implementation of #29. After approval of the overall structure, I will port the changes to the modules for Hibernate 5 and 4 too.