• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java PropertiesConfigurationFactory类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.springframework.boot.bind.PropertiesConfigurationFactory的典型用法代码示例。如果您正苦于以下问题:Java PropertiesConfigurationFactory类的具体用法?Java PropertiesConfigurationFactory怎么用?Java PropertiesConfigurationFactory使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



PropertiesConfigurationFactory类属于org.springframework.boot.bind包,在下文中一共展示了PropertiesConfigurationFactory类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的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;
}
 
开发者ID:jfaster,项目名称:mango-spring-boot-starter,代码行数:18,代码来源:MangoConfigFactory.java


示例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());
    }
}
 
开发者ID:codeabovelab,项目名称:haven-platform,代码行数:19,代码来源:DefaultParser.java


示例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);
    }
}
 
开发者ID:Capgemini,项目名称:spring-boot-capgemini,代码行数:18,代码来源:SpringBootSettingsResolver.java


示例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);
	}
}
 
开发者ID:halober,项目名称:spring-boot-starter-dao,代码行数:16,代码来源:DataSourceAutoConfiguration.java


示例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);
    });
}
 
开发者ID:redlink-gmbh,项目名称:smarti,代码行数:31,代码来源:SolrMltInterestingTermRegistrar.java


示例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: getSettings

import org.springframework.boot.bind.PropertiesConfigurationFactory; //导入依赖的package包/类
@VisibleForTesting
@SneakyThrows
RestSettings getSettings() {
    if (settings == null) {
        final PropertiesConfigurationFactory<RestSettings> factory =
                new PropertiesConfigurationFactory<>(RestSettings.class);

        factory.setTargetName("rest");
        factory.setPropertySources(environment.getPropertySources());
        factory.setConversionService(environment.getConversionService());

        settings = factory.getObject();
    }
    return settings;
}
 
开发者ID:zalando-stups,项目名称:put-it-to-rest,代码行数:16,代码来源:RestClientPostProcessor.java


示例9: nakadiSettings

import org.springframework.boot.bind.PropertiesConfigurationFactory; //导入依赖的package包/类
@Bean
public NakadiSettings nakadiSettings() {
    final PropertiesConfigurationFactory<NakadiSettings> propertiesConfigurationFactory =
        new PropertiesConfigurationFactory<>(NakadiSettings.class);
    propertiesConfigurationFactory.setConversionService(environment.getConversionService());
    propertiesConfigurationFactory.setPropertySources(environment.getPropertySources());
    propertiesConfigurationFactory.setTargetName("paradox.nakadi");
    try {
        return propertiesConfigurationFactory.getObject();
    } catch (final Exception e) {
        throw new RuntimeException(e);
    }
}
 
开发者ID:zalando-nakadi,项目名称:paradox-nakadi-consumer,代码行数:14,代码来源:NakadiSettingsConfiguration.java


示例10: 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


示例11: setEnvironment

import org.springframework.boot.bind.PropertiesConfigurationFactory; //导入依赖的package包/类
@Override
@SneakyThrows
public void setEnvironment(final Environment env) {
    final ConfigurableEnvironment environment = (ConfigurableEnvironment) env;

    final PropertiesConfigurationFactory<RiptideSettings> factory =
            new PropertiesConfigurationFactory<>(RiptideSettings.class);

    factory.setTargetName("riptide");
    factory.setPropertySources(environment.getPropertySources());
    factory.setConversionService(environment.getConversionService());

    this.settings = factory.getObject();
}
 
开发者ID:zalando,项目名称:riptide,代码行数:15,代码来源:RiptidePostProcessor.java


示例12: 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);
	}
}
 
开发者ID:Nephilim84,项目名称:contestparser,代码行数:39,代码来源:ConfigurationPropertiesBindingPostProcessor.java


示例13: gitInfo

import org.springframework.boot.bind.PropertiesConfigurationFactory; //导入依赖的package包/类
public GitInfo gitInfo() throws Exception {
	PropertiesConfigurationFactory<GitInfo> factory = new PropertiesConfigurationFactory<GitInfo>(
			new GitInfo());
	factory.setTargetName("git");
	Properties properties = new Properties();
	if (this.gitProperties.exists()) {
		properties = PropertiesLoaderUtils.loadProperties(this.gitProperties);
	}
	factory.setProperties(properties);
	return factory.getObject();
}
 
开发者ID:Nephilim84,项目名称:contestparser,代码行数:12,代码来源:EndpointAutoConfiguration.java


示例14: infoMap

import org.springframework.boot.bind.PropertiesConfigurationFactory; //导入依赖的package包/类
public Map<String, Object> infoMap() throws Exception {
	PropertiesConfigurationFactory<Map<String, Object>> factory = new PropertiesConfigurationFactory<Map<String, Object>>(
			new LinkedHashMap<String, Object>());
	factory.setTargetName("info");
	factory.setPropertySources(this.environment.getPropertySources());
	return factory.getObject();
}
 
开发者ID:Nephilim84,项目名称:contestparser,代码行数:8,代码来源:EndpointAutoConfiguration.java


示例15: load

import org.springframework.boot.bind.PropertiesConfigurationFactory; //导入依赖的package包/类
private static InitializrProperties load(Resource resource) {
	PropertiesConfigurationFactory<InitializrProperties> factory = new PropertiesConfigurationFactory<>(
			InitializrProperties.class);
	factory.setTargetName("initializr");
	MutablePropertySources sources = new MutablePropertySources();
	sources.addFirst(new PropertiesPropertySource("main", loadProperties(resource)));
	factory.setPropertySources(sources);
	try {
		factory.afterPropertiesSet();
		return factory.getObject();
	}
	catch (Exception e) {
		throw new IllegalStateException("Could not create InitializrProperties", e);
	}
}
 
开发者ID:spring-io,项目名称:initializr,代码行数:16,代码来源:InitializrMetadataBuilderTests.java



注:本文中的org.springframework.boot.bind.PropertiesConfigurationFactory类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java DateType类代码示例发布时间:2022-05-22
下一篇:
Java TorClient类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap