You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+20-2Lines changed: 20 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
# [Avaje-JsonB](https://avaje.io/jsonb/)
6
6
7
-
Fast, reflection-free Json binding via apt source code generation. A source code generation style alternative to ObjectMapper, Gson (code generation vs reflection)
7
+
Fast, reflection-free Json binding via apt source code generation. A light (~188kb + generated code) source code generation style alternative to Jacksons ObjectMapper, Gson (code generation vs reflection)
8
8
9
9
- Annotate java classes with `@Json` (or use `@Json.Import` for types we "don't own" or can't annotate)
@@ -14,7 +14,19 @@ Fast, reflection-free Json binding via apt source code generation. A source code
14
14
- Support Mixins (adding jsonb features to types we can't directly annotate).
15
15
- Provides support for dynamic json views (similar in style to that presented by [LinkedIn at java one in 2009](https://www.slideshare.net/linkedin/building-consistent-restful-apis-in-a-highperformance-environment)
16
16
17
+
### Built-in Type Adapters
17
18
19
+
Built-in support for reading and writing Java’s core data types:
20
+
21
+
* Primitives (int, float, char...) and their boxed counterparts (Integer, Float, Character...).
0 commit comments