Browse Source

ASM annotation visitor defensively accesses enum constants

Issue: SPR-15442
pull/1386/head
Juergen Hoeller 8 years ago
parent
commit
093e573ace
  1. 3
      spring-core/src/main/java/org/springframework/core/type/classreading/AbstractRecursiveAnnotationVisitor.java

3
spring-core/src/main/java/org/springframework/core/type/classreading/AbstractRecursiveAnnotationVisitor.java

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
/*
* Copyright 2002-2016 the original author or authors.
* Copyright 2002-2017 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -80,6 +80,7 @@ abstract class AbstractRecursiveAnnotationVisitor extends AnnotationVisitor { @@ -80,6 +80,7 @@ abstract class AbstractRecursiveAnnotationVisitor extends AnnotationVisitor {
Class<?> enumType = this.classLoader.loadClass(Type.getType(asmTypeDescriptor).getClassName());
Field enumConstant = ReflectionUtils.findField(enumType, attributeValue);
if (enumConstant != null) {
ReflectionUtils.makeAccessible(enumConstant);
valueToUse = enumConstant.get(null);
}
}

Loading…
Cancel
Save