Closed lzyforever closed 4 years ago
在源码ApiEncryptDataInit类中处理requestMapping注解时,见下面源码: } else if (null != requestMapping) { RequestMethod m = requestMapping.method()[0]; methodType = m.name().toLowerCase() + ":"; uri.append(formatUri(requestMapping.value()[0])); }
直接取的requestMapping.method()[0],此时会取不到请求的method,将会报数组越界!请fixed! 嘿嘿
已修复 https://github.com/yinjihuan/monkey-api-encrypt/releases/tag/1.2.1.RELEASE
good job! 666
在源码ApiEncryptDataInit类中处理requestMapping注解时,见下面源码: } else if (null != requestMapping) { RequestMethod m = requestMapping.method()[0]; methodType = m.name().toLowerCase() + ":"; uri.append(formatUri(requestMapping.value()[0])); }
直接取的requestMapping.method()[0],此时会取不到请求的method,将会报数组越界!请fixed! 嘿嘿