com.fasterxml.jackson.annotation.JsonProperty is not respected in native mode #50363
-
I have a REST resource which returns Uni<jakarta.ws.rs.core.Response> and the Response wraps a POJO -> return Uni.createFrom().item(Response.ok(pojo).build()); |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
/cc @geoand (jackson), @gsmet (jackson), @mariofusco (jackson) |
Beta Was this translation helpful? Give feedback.
Please use
Uni<RestResponse<Whatever>>
instead