spring jar bootRun causes GraphQL Schema error

后端 未结 1 1315
陌清茗
陌清茗 2021-01-28 13:01

When I build my Spring Boot application using gradle bootRun or build and then run the output jar, I get the following enormous list of errors out of t

相关标签:
1条回答
  • 2021-01-28 13:44

    I ended up finding out that the fasterxml jackson module version didn't agree with my projects setup, as seen here https://github.com/FasterXML/jackson-module-kotlin/issues/97

    adding this line to the gradle.build file under the dependencies block solved the issue

    compile("com.fasterxml.jackson.module:jackson-module-kotlin:2.9.2")
    

    Thanks to kaqqao for his comment, it was with this information that I was able to google the right error in the very large stack trace.

    0 讨论(0)
提交回复
热议问题