我想将JSON对象发送到Java中的过程调用。
public Response saveRequest(JSONObject projectJSON) throws JSONException {
StoredProcedureQuery spQuery = em.createStoredProcedureQuery("PL SQL PACKAGE");
spQuery.setParameter(JSONobject);
spQuery.registerStoredProcedureParameter("P_OUT_ERR_MSG", Integer.class, ParameterMode.OUT);
}