在我的服务中,我想使用JSONObject
类来创建一个 JSON 对象。为此,我导入了包org.codehaus.jettison.json
并保存了它,但是当我运行项目时,我收到了这个错误:
错误:包 org.codehaus.jettison.json 不存在
[javac] import org.codehaus.jettison.json.JSONException;*
这是我的代码
@POST
@Path("/RSJson")
@Consumes({ MediaType.APPLICATION_JSON })
@Produces(MediaType.APPLICATION_JSON)
public Response RSJson(JSONObject jsonobj) {
System.out.println("Insert "+jsonobj);
return Response.status(Status.OK.getStatusCode()).entity(jsonobj)
.build();
}