Browse Source

Merge pull request #4238 in CORE/base-third from release/10.0 to bugfix/10.0

* commit '26748dd4730ebc9d7b00dde5bc0d530add0b1ec2':
  DEC-20671 fix: was下请求服务器数据失败
bugfix/10.0
superman 3 years ago
parent
commit
6869107b77
  1. 6
      fine-spring/src/main/java/com/fr/third/springframework/core/MethodParameter.java

6
fine-spring/src/main/java/com/fr/third/springframework/core/MethodParameter.java

@ -503,6 +503,12 @@ public class MethodParameter {
*/
public Annotation[] getParameterAnnotations() {
Annotation[] paramAnns = this.parameterAnnotations;
// https://work.fineres.com/browse/DEC-20671 IBM WebSphere OpenJ9 JDK
if (this.method != null) {
this.method.getDeclaredAnnotations();
}
if (paramAnns == null) {
Annotation[][] annotationArray = (this.method != null ?
this.method.getParameterAnnotations() : this.constructor.getParameterAnnotations());

Loading…
Cancel
Save