I am working with OpenAPI-generated interfaces in Spring Boot. My controller implements two generated interfaces: public class TreeController implements NodesApi, TreeApi { However, I get this compilation error: Duplicate default methods named getRequest with the parameters () and () are inherited from the types TreeApi and NodesApi Both interfaces were generated automatically from my OpenAPI specification. What I already tried: I checked both interfaces and they contain similar default methods.