Skip to content

Commit 81e683b

Browse files
committed
CachedIntrospectionResults always caches bean classes except in case of custom BeanInfo (SPR-4876)
1 parent 6698ed8 commit 81e683b

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

org.springframework.beans/src/main/java/org/springframework/beans/CachedIntrospectionResults.java

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2008 the original author or authors.
2+
* Copyright 2002-2009 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -141,8 +141,11 @@ static CachedIntrospectionResults forClass(Class beanClass) throws BeansExceptio
141141
if (results == null) {
142142
// can throw BeansException
143143
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.
144146
if (ClassUtils.isCacheSafe(beanClass, CachedIntrospectionResults.class.getClassLoader()) ||
145-
isClassLoaderAccepted(beanClass.getClassLoader())) {
147+
isClassLoaderAccepted(beanClass.getClassLoader()) ||
148+
!ClassUtils.isPresent(beanClass.getName() + "BeanInfo", beanClass.getClassLoader())) {
146149
classCache.put(beanClass, results);
147150
}
148151
else {

0 commit comments

Comments
 (0)