|
@@ -84,11 +84,11 @@ public class DefaultController {
|
|
|
@PermitAll
|
|
|
public CommonResult<Boolean> test(HttpServletRequest request) {
|
|
|
// 打印查询参数
|
|
|
- // log.info("Query: {}", ServletUtils.getParamMap(request));
|
|
|
+ log.info("Query: {}", ServletUtils.getParamMap(request));
|
|
|
// 打印请求头
|
|
|
- // log.info("Header: {}", ServletUtils.getHeaderMap(request));
|
|
|
+ log.info("Header: {}", ServletUtils.getHeaderMap(request));
|
|
|
// 打印请求体
|
|
|
- // log.info("Body: {}", ServletUtils.getBody(request));
|
|
|
+ log.info("Body: {}", ServletUtils.getBody(request));
|
|
|
return CommonResult.success(true);
|
|
|
}
|
|
|
|