DATAKV-150 - Fix compile error after switch to Spring 5.

This commit is contained in:
Christoph Strobl
2016-10-06 18:35:21 +02:00
committed by Mark Paluch
parent 22c949fb6a
commit f9ac897ecc

View File

@@ -330,7 +330,7 @@ enum AnnotationBasedKeySpaceResolver implements KeySpaceResolver {
this.declaringClass = declaringClass;
this.composedAnnotation = composedAnnotation;
this.annotation = annotation;
this.annotationAttributes = AnnotatedElementUtils.getAnnotationAttributes(rootDeclaringClass, annotation
this.annotationAttributes = AnnotatedElementUtils.getMergedAnnotationAttributes(rootDeclaringClass, annotation
.annotationType().getName());
}