You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hi, springfox-protobuf works fine with 2.9.x swagger,
but when i upgrade to swagger 3.0.0 to adjust webflux framework, the @RequestBody's param disappear
I've debugged and found out that in the class OptimizedModelPropertiesProvider.safeGetPrimaryMember() has been changed. replacing jacksonProperty.getPrimaryMember() with
if (givenContext.isReturnType()) return jacksonProperty.getAccessor();
return jacksonProperty.getMutator();
I'v tried to find solution to fix it, but all failed, could you please give some suggestions?
The text was updated successfully, but these errors were encountered:
hi, springfox-protobuf works fine with 2.9.x swagger,
but when i upgrade to swagger 3.0.0 to adjust webflux framework, the @RequestBody's param disappear
I've debugged and found out that in the class OptimizedModelPropertiesProvider.safeGetPrimaryMember() has been changed. replacing jacksonProperty.getPrimaryMember() with
if (givenContext.isReturnType()) return jacksonProperty.getAccessor();
return jacksonProperty.getMutator();
I'v tried to find solution to fix it, but all failed, could you please give some suggestions?
The text was updated successfully, but these errors were encountered: