Exception in thread “main” java.lang.NoClassDefFoundError: org/codehaus/jackson/JsonParseException

后端 未结 1 1156
南笙
南笙 2021-01-14 13:40

I am using Twilio to send SMS messages from my web app and I have almost completed the integration. It\'s sending the SMS, but an error is being generated and I don\'t under

1条回答
  •  不思量自难忘°
    2021-01-14 14:17

    You have missed jackson-core-asl.jar 1.9.13 in you project. You can make use of this Maven POM dependency

    
        org.codehaus.jackson
        jackson-core-asl
        1.9.13
    
    

    Hope this solves your problem. Check this link for more information. Direct link for download

    Class is present in the jar Screen below

    enter image description here

    Remove your java-json.jar and add the jackson-core-asl.jar

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