NoClassDefFoundError JsonAutoDetect while parsing JSON object

前端 未结 5 928
忘掉有多难
忘掉有多难 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:50

    To expand on @jeffamaphone's excellent answer, for maven users

    
        com.fasterxml.jackson.core
        jackson-core
        2.7.3
    
    
    
        com.fasterxml.jackson.core
        jackson-databind
        2.7.3
    
    
    
        com.fasterxml.jackson.core
        jackson-annotations
        2.7.3
    
    

提交回复
热议问题