类org.springframework.boot.context.properties.NestedConfigurationProperty源码实例Demo

下面列出了怎么用org.springframework.boot.context.properties.NestedConfigurationProperty的API类实例代码及写法,或者点击链接到github查看源代码。

private void handlePropertiesObject(final Object properties) {

		Class<?> type = AopUtils.getTargetClass(properties);

		ReflectionUtils.doWithFields(
				type,
				field -> handlePropertiesField(properties, field),
				field -> AnnotatedElementUtils.isAnnotated(field, ServletContextInitParameter.class) || AnnotatedElementUtils.isAnnotated(field, NestedConfigurationProperty.class));

	}
 
 类所在包
 类方法
 同包方法