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

后端 未结 1 1154
南笙
南笙 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

    <dependency>
        <groupId>org.codehaus.jackson</groupId>
        <artifactId>jackson-core-asl</artifactId>
        <version>1.9.13</version>
    </dependency>
    

    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)
提交回复
热议问题