NoClassDefFoundError JsonAutoDetect while parsing JSON object

前端 未结 5 929
忘掉有多难
忘掉有多难 2020-11-28 14:23

I am developing a webapp using Amazon\'s cloud services and I need to make use of JSON objects. How my project is set up is, I have an HTML form where the user will fill in

5条回答
  •  日久生厌
    2020-11-28 14:43

    Or the following gradle configuration:

    compile 'com.fasterxml.jackson.core:jackson-core:2.2.2'
    compile 'com.fasterxml.jackson.core:jackson-databind:2.2.2'
    compile 'com.fasterxml.jackson.core:jackson-annotations:2.2.2'
    

提交回复
热议问题