-
-
Notifications
You must be signed in to change notification settings - Fork 22
Open
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed
Description
Feature
Support naming strategies:
- Default (1:1 to field name)
- Kebab case
- Snake case
More about @JsonNaming:
Example
It should cover scenarios like:
public record Employee (
@JsonProperty("first_name") String firstName,
@JsonProperty("last_name") String lastName
) {}with:
@OpenApiNaming(SNAKE_CASE)
public record Employee (
String firstName,
String lastName
) {}~ Reported on Javalin's Discord.
dennisameling and V1adau
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed
Type
Projects
Status
📋 Backlog