Skip to content

Commit

Permalink
修改参数分组校验bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaxiaolei committed Aug 8, 2017
1 parent 5d16d53 commit 6ff60f5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public JValidator(URL url) {
}

public void validate(String methodName, Class<?>[] parameterTypes, Object[] arguments) throws Exception {
String methodClassName = clazz.getName() + "_" + toUpperMethoName(methodName);
String methodClassName = clazz.getName() + "$" + toUpperMethoName(methodName);
Class<?> methodClass = null;
try {
methodClass = Class.forName(methodClassName, false, Thread.currentThread().getContextClassLoader());
Expand Down

0 comments on commit 6ff60f5

Please sign in to comment.