Browse Source

feat: 调整接口日志打印

weijianghai 2 years ago
parent
commit
fe0c4ccd32

+ 4 - 4
src/main/java/com/nokia/config/LogAspectConfig.java

@@ -55,13 +55,13 @@ public class LogAspectConfig
         stopWatch.start();
         MDC.put("traceId", UUID.randomUUID().toString().replace("-", ""));
         ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
-        Object result = point.proceed();
         if (attributes == null)
         {
-            return result;
+            return point.proceed();
         }
 
         HttpServletRequest request = attributes.getRequest();
+        log.info("请求地址: {} {}", request.getRequestURL().toString(), request.getMethod());
         Object[] args = point.getArgs();
         List<Object> list = new ArrayList<>();
         for (Object arg : args) {
@@ -74,9 +74,9 @@ public class LogAspectConfig
             }
             list.add(arg);
         }
-        stopWatch.stop();
-        log.info("请求地址: {} {}", request.getRequestURL().toString(), request.getMethod());
         log.info("请求参数: {}", JSON.toJSONString(list));
+        Object result = point.proceed();
+        stopWatch.stop();
         log.info("返回: {}", JSON.toJSONString(result));
         log.info("耗时:{} ms", stopWatch.getTotalTimeMillis());
         return result;

+ 7 - 12
src/main/java/com/nokia/controller/FlowApiController.java

@@ -87,11 +87,6 @@ public class FlowApiController {
         }
     }
 
-    /**
-     * 
-     * @param jsonObject
-     * @return
-     */
     private R getRoleCityByUserId(JSONObject jsonObject) {
         Integer userId = jsonObject.getInteger("userId");
         if (null == userId) {
@@ -107,7 +102,7 @@ public class FlowApiController {
         return R.ok().data(flowRoleCityVos);
     }
 
-    public R findRoleList(JSONObject jsonObject) {
+    private R findRoleList(JSONObject jsonObject) {
         String username = jsonObject.getString("userName");
         if (username == null || username.equals("")) {
             return R.ok().data(flowService.findRoleList());
@@ -116,12 +111,12 @@ public class FlowApiController {
         return R.ok().data(roleList);
     }
 
-    public R findToPage() {
+    private R findToPage() {
         List<FlowUserVo> flowUserVos = flowService.findToPage();
         return R.ok().data(flowUserVos);
     }
 
-    public R getByLoginId(JSONObject jsonObject) {
+    private R getByLoginId(JSONObject jsonObject) {
         String loginId = jsonObject.getString("loginId");
         if (loginId == null || loginId.equals("")) {
             return R.error().message("输入必须包含loginId");
@@ -130,7 +125,7 @@ public class FlowApiController {
         return R.ok().data(flowUserVo);
     }
 
-    public R get(JSONObject jsonObject) {
+    private R get(JSONObject jsonObject) {
         Integer userId = null;
         try {
             userId = jsonObject.getInteger("userId");
@@ -144,7 +139,7 @@ public class FlowApiController {
         return R.ok().data(flowUserVo);
     }
 
-    public R findRoleIdByUserId(JSONObject jsonObject) {
+    private R findRoleIdByUserId(JSONObject jsonObject) {
         Integer userId = null;
         try {
             userId = jsonObject.getInteger("userId");
@@ -158,7 +153,7 @@ public class FlowApiController {
         return R.ok().data(roleIdList);
     }
 
-    public R findUserIdByRoleId(JSONObject jsonObject) {
+    private R findUserIdByRoleId(JSONObject jsonObject) {
         Integer roleId = null;
         try {
             roleId = jsonObject.getInteger("roleId");
@@ -172,7 +167,7 @@ public class FlowApiController {
         return R.ok().data(userIdList);
     }
 
-    public R findAuthorizedUser(JSONObject jsonObject) {
+    private R findAuthorizedUser(JSONObject jsonObject) {
         String loginId = jsonObject.getString("loginId");
         loginId = loginId == null || loginId.equals("") ? null : loginId.trim();
         Integer roleId = null;