|
|
|
@ -0,0 +1,57 @@
|
|
|
|
|
package cn.stylefeng.guns.config.validator;
|
|
|
|
|
|
|
|
|
|
import cn.stylefeng.roses.kernel.validator.api.context.RequestParamContext;
|
|
|
|
|
import org.springframework.core.Conventions;
|
|
|
|
|
import org.springframework.core.MethodParameter;
|
|
|
|
|
import org.springframework.http.converter.HttpMessageConverter;
|
|
|
|
|
import org.springframework.lang.Nullable;
|
|
|
|
|
import org.springframework.validation.BindingResult;
|
|
|
|
|
import org.springframework.web.bind.MethodArgumentNotValidException;
|
|
|
|
|
import org.springframework.web.bind.WebDataBinder;
|
|
|
|
|
import org.springframework.web.bind.support.WebDataBinderFactory;
|
|
|
|
|
import org.springframework.web.context.request.NativeWebRequest;
|
|
|
|
|
import org.springframework.web.method.support.ModelAndViewContainer;
|
|
|
|
|
import org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 拓展原有RequestResponseBodyMethodProcessor,只为缓存临时参数
|
|
|
|
|
*
|
|
|
|
|
* @author fengshuonan
|
|
|
|
|
* @date 2020/8/21 20:51
|
|
|
|
|
*/
|
|
|
|
|
public class GunsValidatorRequestResponseBodyMethodProcessor extends RequestResponseBodyMethodProcessor {
|
|
|
|
|
|
|
|
|
|
public GunsValidatorRequestResponseBodyMethodProcessor(List<HttpMessageConverter<?>> converters) {
|
|
|
|
|
super(converters);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public Object resolveArgument(MethodParameter parameter, @Nullable ModelAndViewContainer mavContainer, NativeWebRequest webRequest, @Nullable WebDataBinderFactory binderFactory) throws Exception {
|
|
|
|
|
|
|
|
|
|
parameter = parameter.nestedIfOptional();
|
|
|
|
|
Object arg = readWithMessageConverters(webRequest, parameter, parameter.getNestedGenericParameterType());
|
|
|
|
|
|
|
|
|
|
// 临时缓存一下@RequestBody注解上的参数
|
|
|
|
|
RequestParamContext.setObject(arg);
|
|
|
|
|
|
|
|
|
|
String name = Conventions.getVariableNameForParameter(parameter);
|
|
|
|
|
|
|
|
|
|
if (binderFactory != null) {
|
|
|
|
|
WebDataBinder binder = binderFactory.createBinder(webRequest, arg, name);
|
|
|
|
|
if (arg != null) {
|
|
|
|
|
validateIfApplicable(binder, parameter);
|
|
|
|
|
if (binder.getBindingResult().hasErrors() && isBindExceptionRequired(binder, parameter)) {
|
|
|
|
|
throw new MethodArgumentNotValidException(parameter, binder.getBindingResult());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (mavContainer != null) {
|
|
|
|
|
mavContainer.addAttribute(BindingResult.MODEL_KEY_PREFIX + name, binder.getBindingResult());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return adaptArgumentIfNecessary(arg, parameter);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|