|
@@ -43,7 +43,7 @@ public class ResponseUtil { |
|
|
// FIXME: hutool 的 BUG:JSONUtil.toJsonStr() |
|
|
// FIXME: hutool 的 BUG:JSONUtil.toJsonStr() |
|
|
// 将JSON转为String的时候,忽略null值的时候转成的String存在错误 |
|
|
// 将JSON转为String的时候,忽略null值的时候转成的String存在错误 |
|
|
response.getWriter() |
|
|
response.getWriter() |
|
|
.write(JSONUtil.toJsonStr(new JSONObject(ApiResponse.ofStatus(status, data), true))); |
|
|
|
|
|
|
|
|
.write(JSONUtil.toJsonStr(new JSONObject(ApiResponse.ofStatus(status, data), false))); |
|
|
} catch (IOException e) { |
|
|
} catch (IOException e) { |
|
|
log.error("Response写出JSON异常,", e); |
|
|
log.error("Response写出JSON异常,", e); |
|
|
} |
|
|
} |
|
@@ -65,7 +65,7 @@ public class ResponseUtil { |
|
|
// FIXME: hutool 的 BUG:JSONUtil.toJsonStr() |
|
|
// FIXME: hutool 的 BUG:JSONUtil.toJsonStr() |
|
|
// 将JSON转为String的时候,忽略null值的时候转成的String存在错误 |
|
|
// 将JSON转为String的时候,忽略null值的时候转成的String存在错误 |
|
|
response.getWriter() |
|
|
response.getWriter() |
|
|
.write(JSONUtil.toJsonStr(new JSONObject(ApiResponse.ofException(exception), true))); |
|
|
|
|
|
|
|
|
.write(JSONUtil.toJsonStr(new JSONObject(ApiResponse.ofException(exception), false))); |
|
|
} catch (IOException e) { |
|
|
} catch (IOException e) { |
|
|
log.error("Response写出JSON异常,", e); |
|
|
log.error("Response写出JSON异常,", e); |
|
|
} |
|
|
} |
|
|