+ increase size to 256
This commit is contained in:
Costin Leau 2010-01-28 16:03:07 +00:00
parent b32c4cfb8a
commit 39f81760f8
1 changed files with 2 additions and 1 deletions

View File

@ -30,11 +30,12 @@ import org.springframework.core.io.ResourceLoader;
* (i.e. per ".class" file).
*
* @author Juergen Hoeller
* @author Costin Leau
* @since 2.5
*/
public class CachingMetadataReaderFactory extends SimpleMetadataReaderFactory {
private static final int MAX_ENTRIES = 50;
private static final int MAX_ENTRIES = 256;
@SuppressWarnings("serial")
private static final <K, V> Map<K, V> createLRUCache() {