swagger-codegen-generators icon indicating copy to clipboard operation
swagger-codegen-generators copied to clipboard

[Java] [Feign] Add support for Feign 13

Open lucasls opened this issue 8 months ago • 1 comments

As pointed out in the issue https://github.com/swagger-api/swagger-codegen/issues/12524, compilation fails for generated classes when Feign 13 and above are used.

The reason is version 13 adds an overload to the RetryableException constructor with the type Long instead of Date, and the value is passed as null causing the compiler to fail to resolve the constructor.

This PR applies https://github.com/swagger-api/swagger-codegen/pull/12525 for version 3.0

lucasls avatar Feb 24 '25 17:02 lucasls