import org.json.JSONArray;
JSONArray json=new JSONArray(al);
response.setContentType("application/json");
response.getWriter().print(json);
}
我已经将jar添加到我的项目中,但它显示:
SEVERE:servlet [com.iqvia.Ajax.GetAutoCompResp]的Servlet.service()在路径[/ AutoCompleteAjax]的上下文中引发了异常[Servlet执行抛出异常]的根本原因 java.lang.NoClassDefFoundError:org / json / JSONArray
答案 0 :(得分:0)
在发出ajax请求时使用方法类型
例如:
$.ajax( {
url: "/GetAutoCompResp",
dataType: "json",
method :"POST",
data: {
userId: request.term
},
success: function( data ) {
response( data );
}
} );