最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

spring boot - Does graphql controller in springboot require a no args constructor for input DTO? - Stack Overflow

programmeradmin2浏览0评论

I'm working on a spring boot graphql project where my mutation takes a complex input type. My BookInput is an interface and I get a concrete implementation at run time like BookInputImpl ( We can assume there are no other implementations for the interface ).

@MutationMapping
public Book createBook(@Argument BookInput bookInput) {
    return bookService.createBook( bookInput );
}

However, when sent a request from postman I receive an exception stating single or unique constructor expected for my interface BookInput.

Is there any workaround to use interface because i want to accept interface and dont want any reference to my implementation.

发布评论

评论列表(0)

  1. 暂无评论