tosix1988
tosix1988
In Swagger JAX-RS configuration, it is possible to set which type of resource scanner should be used to scan resources by specifying the "scannerClass" parameter of openapi-configuration. Either one of...
Suppose we have a following enum type ```java public static enum EnumType { ONE("one"), TWO("two"); private EnumType(String value) { this.value = value; } private final String value; public String getValue()...
When a type that inherits properties from its supertype is annotated by @JsonbPropertyOrder, the inherited properties are ignored even if specified in the @JsonbPropertyOrder. To reproduce, suppose we have the...