Erik Greif
Erik Greif
Hi @debora-ito, thanks for looking at this. What's the typical turnaround on issues like this? I would like to inform my team know how long we will have a workaround...
Here are two example classes: the model, and the abstracted primitive class. ```java @Data //lombok class MyClass { private String simplePrimitive; private PrimitiveWrapper abstractedPrimitive; } @Data class PrimitiveWrapper { private...
Workarounds found: Tweak the Docket of every service that uses the model (real deep sigh here): ```java new Docket(DocumentationType.SWAGGER_2) .directModelSubstitute(PrimitiveWrapper.class, String.class) ... ``` Or, annotate _every single_ instance of the...