File tree 1 file changed +5
-2
lines changed
org.springframework.beans/src/main/java/org/springframework/beans
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2008 the original author or authors.
2
+ * Copyright 2002-2009 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -141,8 +141,11 @@ static CachedIntrospectionResults forClass(Class beanClass) throws BeansExceptio
141
141
if (results == null ) {
142
142
// can throw BeansException
143
143
results = new CachedIntrospectionResults (beanClass );
144
+ // On JDK 1.5 and higher, it is almost always safe to cache the bean class...
145
+ // The sole exception is a custom BeanInfo class being provided in a non-safe ClassLoader.
144
146
if (ClassUtils .isCacheSafe (beanClass , CachedIntrospectionResults .class .getClassLoader ()) ||
145
- isClassLoaderAccepted (beanClass .getClassLoader ())) {
147
+ isClassLoaderAccepted (beanClass .getClassLoader ()) ||
148
+ !ClassUtils .isPresent (beanClass .getName () + "BeanInfo" , beanClass .getClassLoader ())) {
146
149
classCache .put (beanClass , results );
147
150
}
148
151
else {
You can’t perform that action at this time.
0 commit comments