refactor: 更改日志上传的api地址

11111
winter 9 months ago
parent b53fe0f7d6
commit 9aec66d1a7

@ -14,6 +14,7 @@ public class BodyReaderRequestWrapper extends HttpServletRequestWrapper {
private final byte[] buff;
public BodyReaderRequestWrapper(HttpServletRequest request) throws IOException {
super(request);
// 将 body 中的内容读取到 buff 中
InputStream is = request.getInputStream();
ByteArrayOutputStream baos = new ByteArrayOutputStream();
byte[] b = new byte[1024];

@ -108,7 +108,7 @@ public class UploadApiLogInterceptor implements HandlerInterceptor {
String requestData = root.toString();
RequestBody requestBody = RequestBody.create(MediaType.parse("application/json"), requestData);
Request okRequest = new Request.Builder()
.url("https://teammodelosfunction.chinacloudsites.cn/api/http-log")
.url("http://cdhabook.teammodel.cn:8805/api/http-log")
.post(requestBody)
.build();

Loading…
Cancel
Save