Jonas Konrad

Results 118 comments of Jonas Konrad

This is documented behavior. Please see: https://fasterxml.github.io/jackson-databind/javadoc/2.8/com/fasterxml/jackson/databind/PropertyNamingStrategy.SnakeCaseStrategy.html To fix this, you can either add an explicit `@JsonProperty` annotation, or name the getter something else – `geteVariable`.

I think that was my reason for not extending Container**De**serializerBase, but from what I can tell ContainerSerializer is the base class for the primitive array *serializers* so at least that...

I don't think anyone is working on this at the moment. The infrastructure is there with primitive-collections-base, but someone would have to implement the fastutil parts. The eclipse-collections module is...

This PR changes HttpStatus to be an interface, with the enum HttpStatusStandard containing the standard codes. For convenience, `HttpStatus` has fields for the standard codes also, that are initialized similar...

@graemerocher we can only use enum constants inside annotations, so we need some enum (unless we want to switch to strings...)

Sorry it took so long. We decided not to go with this approach due to the problems introduced by the enum split. There seems to be no satisfactory approach that...

Sorry this took so long, I was waiting for the client refactor, and then went on vacation. Can you try with the PR #8300 applied?

ok it turns out that `exception-on-error-status` only matters if the error type is the same as the body type, and the error type is JsonError by default. if you specify...

No, that can't work, because it might yield a body that is of the wrong type (bodyType, when it should parse as errorType). I think the current behavior is correct,...