Browse Source

Merge pull request #4244 in CORE/base-third from release/11.0 to feature/x

* commit '850cfe1db35dda890fb644a0965200e06e3d175a':
  DEC-20671 fix: was下请求服务器数据失败
feature/x
superman 3 years ago
parent
commit
1cf07522b3
  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