Commit 1d201085 by guominglei

去除json化

parent 413cc63c
...@@ -36,7 +36,7 @@ public class ResponseAdvice implements ResponseBodyAdvice<Object> { ...@@ -36,7 +36,7 @@ public class ResponseAdvice implements ResponseBodyAdvice<Object> {
if (body instanceof ResponseResult){ if (body instanceof ResponseResult){
return body; return body;
} }
return JSON.toJSONString(ResponseResult.ok(body)); return ResponseResult.ok(body);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment