本文整理汇总了Java中org.springframework.boot.bind.PropertiesConfigurationFactory.bindPropertiesToTarget方法的典型用法代码示例。如果您正苦于以下问题:Java PropertiesConfigurationFactory.bindPropertiesToTarget方法的具体用法?Java PropertiesConfigurationFactory.bindPropertiesToTarget怎么用?Java PropertiesConfigurationFactory.bindPropertiesToTarget使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.springframework.boot.bind.PropertiesConfigurationFactory
的用法示例。
在下文中一共展示了PropertiesConfigurationFactory.bindPropertiesToTarget方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getMangoConfig
import org.springframework.boot.bind.PropertiesConfigurationFactory; //导入方法依赖的package包/类
public static MangoConfig getMangoConfig(DefaultListableBeanFactory beanFactory,String prefix){
MangoConfig target = new MangoConfig();
PropertiesConfigurationFactory<Object> factory = new PropertiesConfigurationFactory<Object>(target);
factory.setPropertySources(deducePropertySources(beanFactory));
factory.setConversionService(new DefaultConversionService());
factory.setIgnoreInvalidFields(false);
factory.setIgnoreUnknownFields(true);
factory.setIgnoreNestedProperties(false);
factory.setTargetName(prefix);
try {
factory.bindPropertiesToTarget();
}
catch (Exception ex) {
throw new MangoAutoConfigException(ex);
}
return target;
}
示例2: parse
import org.springframework.boot.bind.PropertiesConfigurationFactory; //导入方法依赖的package包/类
@Override
public void parse(File file, ContainerCreationContext context) {
try {
ContainerSource arg = new ContainerSource();
PropertySourcesLoader loader = new PropertySourcesLoader();
loader.load(new FileSystemResource(file));
MutablePropertySources loaded = loader.getPropertySources();
PropertiesConfigurationFactory<Object> factory = new PropertiesConfigurationFactory<>(arg);
factory.setPropertySources(loaded);
factory.setConversionService(defaultConversionService);
factory.bindPropertiesToTarget();
arg.getInclude().forEach(a -> parse(new File(file.getParent(), a), context));
context.addCreateContainerArg(arg);
} catch (Exception e) {
log.error("can't parse configuration", e.getMessage());
}
}
示例3: resolveSettings
import org.springframework.boot.bind.PropertiesConfigurationFactory; //导入方法依赖的package包/类
@SuppressWarnings("unchecked")
@Override
public <T> T resolveSettings(Class<T> settingsClass, String prefix, ConfigurableEnvironment environment) {
try {
T newSettings = (T) Class.forName(settingsClass.getName()).newInstance();
PropertiesConfigurationFactory<Object> factory = new PropertiesConfigurationFactory<Object>(newSettings);
factory.setTargetName(prefix);
factory.setPropertySources(environment.getPropertySources());
factory.setConversionService(environment.getConversionService());
factory.bindPropertiesToTarget();
return newSettings;
} catch (Exception ex) {
throw new FatalBeanException("Could not bind DataSourceSettings properties", ex);
}
}
示例4: getDruidConfig
import org.springframework.boot.bind.PropertiesConfigurationFactory; //导入方法依赖的package包/类
private <T> T getDruidConfig(String prefix, Class<T> claz) {
PropertiesConfigurationFactory<T> factory = new PropertiesConfigurationFactory<T>(claz);
factory.setPropertySources(environment.getPropertySources());
factory.setConversionService(environment.getConversionService());
factory.setIgnoreInvalidFields(false);
factory.setIgnoreUnknownFields(true);
factory.setIgnoreNestedProperties(false);
factory.setTargetName(prefix);
try {
factory.bindPropertiesToTarget();
return factory.getObject();
} catch (Exception e) {
throw new RuntimeException(e);
}
}
示例5: registerBeanDefinitions
import org.springframework.boot.bind.PropertiesConfigurationFactory; //导入方法依赖的package包/类
@Override
public void registerBeanDefinitions(AnnotationMetadata importingClassMetadata, BeanDefinitionRegistry registry) {
log.debug("in registerBeanDefinitions(..)");
SolrMltInterestingTermConfiguration config = new SolrMltInterestingTermConfiguration();
PropertiesConfigurationFactory<Object> factory = new PropertiesConfigurationFactory<Object>(config);
factory.setTargetName("keyword");
factory.setPropertySources(environment.getPropertySources());
factory.setConversionService(environment.getConversionService());
try {
factory.bindPropertiesToTarget();
}
catch (BindException ex) {
throw new FatalBeanException("Could not bind DataSourceSettings properties", ex);
}
ModifiableSolrParams params = new ModifiableSolrParams();
params.set(HttpClientUtil.PROP_MAX_CONNECTIONS, 128);
params.set(HttpClientUtil.PROP_MAX_CONNECTIONS_PER_HOST, 32);
params.set(HttpClientUtil.PROP_FOLLOW_REDIRECTS, false);
httpClient = HttpClientUtil.createClient(params);
config.getSolrmlt().stream().filter(SolrMltConfig::isValid).forEach(mltConfig -> {
GenericBeanDefinition beanDefinition = new GenericBeanDefinition();
beanDefinition.setBeanClass(SolrMltInterestingTermExtractor.class);
ConstructorArgumentValues constructorArguments = new ConstructorArgumentValues();
beanDefinition.setConstructorArgumentValues(constructorArguments);
constructorArguments.addIndexedArgumentValue(0, httpClient);
constructorArguments.addIndexedArgumentValue(1, mltConfig);
log.debug("register bean definition for {}", mltConfig);
registry.registerBeanDefinition(mltConfig.getName(), beanDefinition);
});
}
示例6: postProcessBeforeInitialization
import org.springframework.boot.bind.PropertiesConfigurationFactory; //导入方法依赖的package包/类
@SuppressWarnings("deprecation")
private void postProcessBeforeInitialization(Object bean, String beanName,
ConfigurationProperties annotation) {
Object target = bean;
PropertiesConfigurationFactory<Object> factory = new PropertiesConfigurationFactory<Object>(
target);
if (annotation != null && annotation.locations().length != 0) {
factory.setPropertySources(
loadPropertySources(annotation.locations(), annotation.merge()));
}
else {
factory.setPropertySources(this.propertySources);
}
factory.setValidator(determineValidator(bean));
// If no explicit conversion service is provided we add one so that (at least)
// comma-separated arrays of convertibles can be bound automatically
factory.setConversionService(this.conversionService == null
? getDefaultConversionService() : this.conversionService);
if (annotation != null) {
factory.setIgnoreInvalidFields(annotation.ignoreInvalidFields());
factory.setIgnoreUnknownFields(annotation.ignoreUnknownFields());
factory.setExceptionIfInvalid(annotation.exceptionIfInvalid());
factory.setIgnoreNestedProperties(annotation.ignoreNestedProperties());
if (StringUtils.hasLength(annotation.prefix())) {
factory.setTargetName(annotation.prefix());
}
}
try {
factory.bindPropertiesToTarget();
}
catch (Exception ex) {
String targetClass = ClassUtils.getShortName(target.getClass());
throw new BeanCreationException(beanName, "Could not bind properties to "
+ targetClass + " (" + getAnnotationDetails(annotation) + ")", ex);
}
}
开发者ID:vikrammane23,项目名称:https-github.com-g0t4-jenkins2-course-spring-boot,代码行数:37,代码来源:ConfigurationPropertiesBindingPostProcessor.java
示例7: bindToSpringApplication
import org.springframework.boot.bind.PropertiesConfigurationFactory; //导入方法依赖的package包/类
/**
* Bind the environment to the {@link SpringApplication}.
* @param environment the environment to bind
* @param application the application to bind to
*/
protected void bindToSpringApplication(ConfigurableEnvironment environment,
SpringApplication application) {
PropertiesConfigurationFactory<SpringApplication> binder = new PropertiesConfigurationFactory<SpringApplication>(
application);
binder.setTargetName("spring.main");
binder.setConversionService(this.conversionService);
binder.setPropertySources(environment.getPropertySources());
try {
binder.bindPropertiesToTarget();
}
catch (BindException ex) {
throw new IllegalStateException("Cannot bind to SpringApplication", ex);
}
}
开发者ID:vikrammane23,项目名称:https-github.com-g0t4-jenkins2-course-spring-boot,代码行数:20,代码来源:ConfigFileApplicationListener.java
示例8: postProcessBeforeInitialization
import org.springframework.boot.bind.PropertiesConfigurationFactory; //导入方法依赖的package包/类
@SuppressWarnings("deprecation")
private void postProcessBeforeInitialization(Object bean, String beanName,
ConfigurationProperties annotation) {
Object target = bean;
PropertiesConfigurationFactory<Object> factory = new PropertiesConfigurationFactory<Object>(
target);
if (annotation != null && annotation.locations().length != 0) {
factory.setPropertySources(
loadPropertySources(annotation.locations(), annotation.merge()));
}
else {
factory.setPropertySources(this.propertySources);
}
factory.setValidator(determineValidator(bean));
// If no explicit conversion service is provided we add one so that (at least)
// comma-separated arrays of convertibles can be bound automatically
factory.setConversionService(this.conversionService == null
? getDefaultConversionService() : this.conversionService);
if (annotation != null) {
factory.setIgnoreInvalidFields(annotation.ignoreInvalidFields());
factory.setIgnoreUnknownFields(annotation.ignoreUnknownFields());
factory.setExceptionIfInvalid(annotation.exceptionIfInvalid());
factory.setIgnoreNestedProperties(annotation.ignoreNestedProperties());
String targetName = (StringUtils.hasLength(annotation.value())
? annotation.value() : annotation.prefix());
if (StringUtils.hasLength(targetName)) {
factory.setTargetName(targetName);
}
}
try {
factory.bindPropertiesToTarget();
}
catch (Exception ex) {
String targetClass = ClassUtils.getShortName(target.getClass());
throw new BeanCreationException(beanName, "Could not bind properties to "
+ targetClass + " (" + getAnnotationDetails(annotation) + ")", ex);
}
}
开发者ID:philwebb,项目名称:spring-boot-concourse,代码行数:39,代码来源:ConfigurationPropertiesBindingPostProcessor.java
示例9: postProcessBeforeInitialization
import org.springframework.boot.bind.PropertiesConfigurationFactory; //导入方法依赖的package包/类
private void postProcessBeforeInitialization(Object bean, String beanName,
ConfigurationProperties annotation) {
Object target = (bean instanceof ConfigurationPropertiesHolder
? ((ConfigurationPropertiesHolder) bean).getTarget() : bean);
PropertiesConfigurationFactory<Object> factory = new PropertiesConfigurationFactory<Object>(
target);
if (annotation != null && annotation.locations().length != 0) {
factory.setPropertySources(
loadPropertySources(annotation.locations(), annotation.merge()));
}
else {
factory.setPropertySources(this.propertySources);
}
factory.setValidator(determineValidator(bean));
// If no explicit conversion service is provided we add one so that (at least)
// comma-separated arrays of convertibles can be bound automatically
factory.setConversionService(this.conversionService == null
? getDefaultConversionService() : this.conversionService);
if (annotation != null) {
factory.setIgnoreInvalidFields(annotation.ignoreInvalidFields());
factory.setIgnoreUnknownFields(annotation.ignoreUnknownFields());
factory.setExceptionIfInvalid(annotation.exceptionIfInvalid());
factory.setIgnoreNestedProperties(annotation.ignoreNestedProperties());
String targetName = (StringUtils.hasLength(annotation.value())
? annotation.value() : annotation.prefix());
if (StringUtils.hasLength(targetName)) {
factory.setTargetName(targetName);
}
}
try {
factory.bindPropertiesToTarget();
}
catch (Exception ex) {
String targetClass = ClassUtils.getShortName(target.getClass());
throw new BeanCreationException(beanName, "Could not bind properties to "
+ targetClass + " (" + getAnnotationDetails(annotation) + ")", ex);
}
}