I noticed Spring Boot set spring.beaninfo.ignore as true if it's not set. What does Spring do with respect to this property?
"spring.beaninfo.ignore", with a value of "true" means skipping the search for BeanInfo classes (typically for scenarios where no such classes are being defined for beans in the application in the first place).
The default is "false", considering all BeanInfo metadata classes, like for standard Introspector.getBeanInfo(Class) calls. Consider switching this flag to "true" if you experience repeated ClassLoader access for non-existing BeanInfo classes, in case such access is expensive on startup or on lazy loading.If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With