运行错误诶

来源:2-6 后台程序的实现

曾许诺_殇

2016-11-01 22:08


Servlet.service() for servlet [search] in context with path [/ajaxtest] threw exception [Servlet execution threw an exception] with root cause

java.lang.ClassNotFoundException: net.sf.json.JSONArray


写回答 关注

7回答

  • 慕粉3727206
    2016-11-02 12:18:12
    已采纳

    把json的第三方包放在web-inf/lib下面,然后把以前的包移除

    曾许诺_殇

    非常感谢!

    2016-11-04 15:12:25

    共 1 条回复 >

  • qq_流星划过_5
    2018-05-04 11:36:54

    https://img4.mukewang.com/5aebd4f30001580610780288.jpg

    我的代码报这个错,我在web.xml里面配置过了

    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns="http://java.sun.com/xml/ns/javaee"
        xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
        http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
        <display-name></display-name>
        <welcome-file-list>
            <welcome-file>index.jsp</welcome-file>
        </welcome-file-list>


        <servlet>
            <servlet-name>search</servlet-name>
            <servlet-class>com.imooc.SearchServlet</servlet-class>
        </servlet>


        <servlet-mapping>
            <servlet-name>search</servlet-name>
            <url-pattern>/search</url-pattern>
            
        </servlet-mapping>
    </web-app>


  • 刘信坚
    2017-07-08 22:19:31

    老师 我导入包后出现JSONArray cannot be resolved这个 怎么解决

  • qq_智慧谷_0
    2016-12-25 21:44:10

    我和你的代码一样但是前台输入东西后台没有显示浏览器有下面这个问题

    SCRIPT5007: Unable to get property 'open' of undefined or null reference

    程序里报了空指针问题

  • 少龙的回忆
    2016-12-16 21:02:49

    请问一下,运行后出现空指针怎么办?

    严重: Servlet.service() for servlet search threw exception

    java.lang.NullPointerException

    at java.lang.String.contains(String.java:2104)

    at com.imooc.SearchServlet.getData(SearchServlet.java:38)

    at com.imooc.SearchServlet.doGet(SearchServlet.java:29)


  • 搬砖的瓦力
    2016-11-26 16:29:14

    我也出现了这个情况,能把你的项目目录贴个图出来吗

    严重: Servlet.service() for servlet [search] in context with path [/aaatest] threw exception [Servlet execution threw an exception] with root cause

    java.lang.ClassNotFoundException: net.sf.json.JSONArray

    这是我的

  • qq_Excalibur_0
    2016-11-03 10:08:55

    代码都一样为什么没拿到listData,[]是什么鬼?http://img.mukewang.com/581a9c320001bf6b09960806.jpg

    Q小白熊

    一种情况是你传回来的 keyword 有问题,打个断点看看 keyword 的值是不是跟你在页面上输入的值一样。 第二种情况是你页面输入的值跟你容器里的值没有对应的。 第三种情况》》》》》》》》不知道

    2016-11-15 14:55:19

    共 1 条回复 >

Servlet+Ajax实现搜索框智能提示

Java实现搜索框智能提示,熟练掌握使用Servlet和Ajax

37805 学习 · 146 问题

查看课程

相似问题