天天看点

springboot 获取responsebody中数据

springmvc3 以后支持 实现 ResponseBodyAdvice 来获取web请求的response body

只要实现 ResponseBodyAdvice 接口类就行,如下:

springboot 获取responsebody中数据

注意:

spingmvc 版本要3以上

不要少了实现类上面的注解 @ControllerAdvice

supports方法的需要返回true

beforeBodyWrite需要返回body内容,如果返回null,前端是拿不到body内容的