Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jsonb-dev] Chance to have an API for binding POJO from javax.json.JsonObject?

For some reason, I need to bind an instance of javax.json.JsonObject to a POJO.

I know I can do this.
Jsonb.fromJson(jsonObject.toString(), targetClass);

But I believe Jsonb already has an internal(?) capability for binding POJO directly from an JsonValue, right?

Do I have a chance for that?

Back to the top