在线程异常"主力" java.lang.NoClassDefFoundError的:组织/ codehaus /杰克逊/ JsonParseException杰克逊、线程、主力、异

2023-09-06 18:22:39 作者:拉钩为毛要上吊

我使用Twilio从我的web应用程序发送短信,我已经基本完成了整合。它发送短信,但正在生成一个错误,我不明白为什么。我已经包括这一 JSON 且该文件的JSON依赖链接但我仍然得到一个错误。哪些其他jar,我需要包括哪些内容?

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 understand why. I have included a JSON dependency from this json and this file link but I'm still getting an error. Which other jar do I need to include?

Exception in thread "main" java.lang.NoClassDefFoundError: org/codehaus/jackson/JsonParseException
    at com.twilio.sdk.TwilioRestResponse.getParser(TwilioRestResponse.java:225)
    at com.twilio.sdk.TwilioRestResponse.toMap(TwilioRestResponse.java:243)
    at com.twilio.sdk.resource.list.SmsList.create(SmsList.java:70)
    at Example.main(Example.java:25)
Caused by: java.lang.ClassNotFoundException: org.codehaus.jackson.JsonParseException
    at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:423)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:356)
    ... 4 more

加入

截图显示JSON 更新这是新screesnshot

screenshot showing json added Update this is the new screesnshot

推荐答案

您已经错过杰克逊核心asl.jar 1.9.13在你的项目。你可以利用这个Maven的POM依赖

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>

希望这能解决你的问题。勾选此链接了解详情。直接的下载链接

类是present以下

Class is present in the jar Screen below

删除你的java-json.jar并添加杰克逊核心asl.jar

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