spring jar bootRun causes GraphQL Schema error

自闭症网瘾萝莉.ら 提交于 2019-12-02 10:52:02

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.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!