public class CachedIntrospectionResults
extends java.lang.Object
PropertyDescriptor
information for a Java class. Not intended for direct use by application code.
Necessary for own caching of descriptors within the application's ClassLoader, rather than rely on the JDK's system-wide BeanInfo cache (in order to avoid leaks on ClassLoader shutdown).
Information is cached statically, so we don't need to create new
objects of this class for every JavaBean we manipulate. Hence, this class
implements the factory design pattern, using a private constructor and
a static forClass(Class)
factory method to obtain instances.
acceptClassLoader(ClassLoader)
,
clearClassLoader(ClassLoader)
,
forClass(Class)
Modifier and Type | Field and Description |
---|---|
(package private) static java.util.Set<java.lang.ClassLoader> |
acceptedClassLoaders
Set of ClassLoaders that this CachedIntrospectionResults class will always
accept classes from, even if the classes do not qualify as cache-safe.
|
private java.beans.BeanInfo |
beanInfo
The BeanInfo object for the introspected bean class
|
private static java.util.List<BeanInfoFactory> |
beanInfoFactories
Stores the BeanInfoFactory instances
|
(package private) static java.util.Map<java.lang.Class,java.lang.Object> |
classCache
Map keyed by class containing CachedIntrospectionResults.
|
private static Log |
logger |
private java.util.Map<java.lang.String,java.beans.PropertyDescriptor> |
propertyDescriptorCache
PropertyDescriptor objects keyed by property name String
|
Modifier | Constructor and Description |
---|---|
private |
CachedIntrospectionResults(java.lang.Class beanClass)
Create a new CachedIntrospectionResults instance for the given class.
|
Modifier and Type | Method and Description |
---|---|
static void |
acceptClassLoader(java.lang.ClassLoader classLoader)
Accept the given ClassLoader as cache-safe, even if its classes would
not qualify as cache-safe in this CachedIntrospectionResults class.
|
private java.beans.PropertyDescriptor |
buildGenericTypeAwarePropertyDescriptor(java.lang.Class beanClass,
java.beans.PropertyDescriptor pd) |
static void |
clearClassLoader(java.lang.ClassLoader classLoader)
Clear the introspection cache for the given ClassLoader, removing the
introspection results for all classes underneath that ClassLoader,
and deregistering the ClassLoader (and any of its children) from the
acceptance list.
|
(package private) static CachedIntrospectionResults |
forClass(java.lang.Class beanClass)
Create CachedIntrospectionResults for the given bean class.
|
(package private) java.lang.Class |
getBeanClass() |
(package private) java.beans.BeanInfo |
getBeanInfo() |
(package private) java.beans.PropertyDescriptor |
getPropertyDescriptor(java.lang.String name) |
(package private) java.beans.PropertyDescriptor[] |
getPropertyDescriptors() |
private static boolean |
isClassLoaderAccepted(java.lang.ClassLoader classLoader)
Check whether this CachedIntrospectionResults class is configured
to accept the given ClassLoader.
|
private static boolean |
isUnderneathClassLoader(java.lang.ClassLoader candidate,
java.lang.ClassLoader parent)
Check whether the given ClassLoader is underneath the given parent,
that is, whether the parent is within the candidate's hierarchy.
|
private static final Log logger
private static java.util.List<BeanInfoFactory> beanInfoFactories
static final java.util.Set<java.lang.ClassLoader> acceptedClassLoaders
static final java.util.Map<java.lang.Class,java.lang.Object> classCache
private final java.beans.BeanInfo beanInfo
private final java.util.Map<java.lang.String,java.beans.PropertyDescriptor> propertyDescriptorCache
private CachedIntrospectionResults(java.lang.Class beanClass) throws BeansException
beanClass
- the bean class to analyzeBeansException
- in case of introspection failurepublic static void acceptClassLoader(java.lang.ClassLoader classLoader)
This configuration method is only relevant in scenarios where the Spring classes reside in a 'common' ClassLoader (e.g. the system ClassLoader) whose lifecycle is not coupled to the application. In such a scenario, CachedIntrospectionResults would by default not cache any of the application's classes, since they would create a leak in the common ClassLoader.
Any acceptClassLoader
call at application startup should
be paired with a clearClassLoader(java.lang.ClassLoader)
call at application shutdown.
classLoader
- the ClassLoader to acceptpublic static void clearClassLoader(java.lang.ClassLoader classLoader)
classLoader
- the ClassLoader to clear the cache forstatic CachedIntrospectionResults forClass(java.lang.Class beanClass) throws BeansException
We don't want to use synchronization here. Object references are atomic, so we can live with doing the occasional unnecessary lookup at startup only.
beanClass
- the bean class to analyzeBeansException
- in case of introspection failureprivate static boolean isClassLoaderAccepted(java.lang.ClassLoader classLoader)
classLoader
- the ClassLoader to checkacceptClassLoader(java.lang.ClassLoader)
private static boolean isUnderneathClassLoader(java.lang.ClassLoader candidate, java.lang.ClassLoader parent)
candidate
- the candidate ClassLoader to checkparent
- the parent ClassLoader to check forjava.beans.BeanInfo getBeanInfo()
java.lang.Class getBeanClass()
java.beans.PropertyDescriptor getPropertyDescriptor(java.lang.String name)
java.beans.PropertyDescriptor[] getPropertyDescriptors()
private java.beans.PropertyDescriptor buildGenericTypeAwarePropertyDescriptor(java.lang.Class beanClass, java.beans.PropertyDescriptor pd)