Deprecate StandardMetadata constructors
Deprecate the public `StandardMetadata` constructors to make it clearer that these classes should not be instantiated directly. A new `AnnotationMetadata.introspect` factory method has been added which can now be used to obtain instances. This change will allow use to make the constructors package private and drop the `nestedAnnotationsAsMap` parameter in a future release. Closes gh-22906
This commit is contained in:
committed by
Juergen Hoeller
parent
7fbf3f97cd
commit
7031964e49
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2018 the original author or authors.
|
||||
* Copyright 2002-2019 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.
|
||||
@@ -55,7 +55,7 @@ public class AnnotatedGenericBeanDefinition extends GenericBeanDefinition implem
|
||||
*/
|
||||
public AnnotatedGenericBeanDefinition(Class<?> beanClass) {
|
||||
setBeanClass(beanClass);
|
||||
this.metadata = new StandardAnnotationMetadata(beanClass, true);
|
||||
this.metadata = AnnotationMetadata.introspect(beanClass);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user