Java 如果Spring.beaninfo.ignore设置为true,Spring会做什么

Java 如果Spring.beaninfo.ignore设置为true,Spring会做什么,java,spring,spring-boot,Java,Spring,Spring Boot,我注意到Spring Boot将Spring.beaninfo.ignore设置为true(如果未设置)。我想知道Spring对这个属性做了什么,谢谢。“Spring.beaninfo.ignore”,值为“true”意味着跳过对beaninfo类的搜索(通常是在应用程序中没有为bean定义此类类的情况下) 默认值为“false”,考虑到所有BeanInfo元数据类,如标准的Introspector.getBeanInfo(类)调用 如果您在不存在的BeANFIN类中经历重复的类加载器访问,如果

我注意到Spring Boot将Spring.beaninfo.ignore设置为true(如果未设置)。我想知道Spring对这个属性做了什么,谢谢。

“Spring.beaninfo.ignore”,值为“true”意味着跳过对beaninfo类的搜索(通常是在应用程序中没有为bean定义此类类的情况下)

默认值为“false”,考虑到所有BeanInfo元数据类,如标准的Introspector.getBeanInfo(类)调用

如果您在不存在的BeANFIN类中经历重复的类加载器访问,如果在启动或延迟加载时这种访问很昂贵,请考虑将此标志转换为“true”。