How SpringBoot: uses AOP to intercept requests with a parameter type of JSON

input parameter format is JSON instead of ordinary string, such as:

    {
        "REQUEST": {
            "page": "1",
            "rows":"20"
        }
    }

the JSON input parameter can be parsed through @ RequestBody String REQUEST in a normal Controller, but how to get such an input parameter in the custom section class RequestInterceptor? Cannot get

through request.getParameter () because the input parameter is a JSON string
@Aspect
@Component
public class RequestInterceptor {
    
    @Autowired
    private HttpServletRequest request;    

    @Pointcut("execution(* com.api.controller..*.*(..))")
    public void point() {
    }

    @Before(value = "point()")
    public void doBefore(JoinPoint joinPoint) throws Throwable {
        // 
    }
    
}
Aug.12,2021

seems to have found a feasible solution:
from-request/10458119-sharp10458119" rel=" nofollow noreferrer "> https://stackoverflow.com/que.

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b32148-2b632.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b32148-2b632.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?