From 1c2c7756e432c2b94b3a16a5eab32cc89b8255c1 Mon Sep 17 00:00:00 2001 From: sofior <35429674@qq.com> Date: Thu, 18 Oct 2018 10:24:52 +0800 Subject: [PATCH] Update InvocableHandlerMethod.java make getMethodArgumentValues from private to protected. --- .../web/method/support/InvocableHandlerMethod.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-web/src/main/java/org/springframework/web/method/support/InvocableHandlerMethod.java b/spring-web/src/main/java/org/springframework/web/method/support/InvocableHandlerMethod.java index 153024cb7483..1cf418ff1b5e 100644 --- a/spring-web/src/main/java/org/springframework/web/method/support/InvocableHandlerMethod.java +++ b/spring-web/src/main/java/org/springframework/web/method/support/InvocableHandlerMethod.java @@ -140,7 +140,7 @@ public Object invokeForRequest(NativeWebRequest request, @Nullable ModelAndViewC /** * Get the method argument values for the current request. */ - private Object[] getMethodArgumentValues(NativeWebRequest request, @Nullable ModelAndViewContainer mavContainer, + protected Object[] getMethodArgumentValues(NativeWebRequest request, @Nullable ModelAndViewContainer mavContainer, Object... providedArgs) throws Exception { MethodParameter[] parameters = getMethodParameters();