When java converts int to Integer, it performs autoboxing using valueOf method. This method internally returns it from IntegerCache class. IntegerCache is an internal class in Integer to maintain the cache from -128 to 127.
We can increase the cache high value using JVM arguments -XX:AutoBoxCacheMax=256