0

我有占位符的基于注释的 bean 配置。在这个占位符的帮助下,我可以很容易地使用我想要的属性值。

@Bean
    public static PropertySourcesPlaceholderConfigurer initPlaceholder() {
        PropertySourcesPlaceholderConfigurer placeholder = new PropertySourcesPlaceholderConfigurer();
        placeholder.setLocation(new ClassPathResource("some.properties"));
        placeholder.setIgnoreUnresolvablePlaceholders(true);

        return placeholder;
    }

如何使用 ${some.properties} 动态值设置此占位符?

placeholder.setLocation(new ClassPathResource(ANY_PROPERTIES));

我不能使用 initPlaceholder(String property)...

4

1 回答 1

0

我对此所做的是创建自己的 PropertyPlaceHolder (获取外部属性文件)

public class MyPropertyPlaceholderConfigurer extends PropertyPlaceholderConfigurer {

public static final String ANY_PROPERTY = "ANY_PROPERTY";

private static final Log LOG = LogFactory.getLog(MyPropertyPlaceholderConfigurer.class);

@Override
protected void loadProperties(Properties props) throws IOException {

    String anyProperty = System.getProperty(ANY_PROPERTY);

    if (StringUtils.isEmpty(anyProperty)) {
        LOG.info("Using default configuration");
        super.loadProperties(props);

    } else {
        LOG.info("Setting HDFS LOCATION PATH TO : " + anyProperty);

        try {
            Path pt = new Path(anyProperty);
            Configuration conf = new Configuration();
            conf.set(FileSystem.FS_DEFAULT_NAME_KEY, anyProperty);
            FileSystem fs = FileSystem.get(conf);
            FSDataInputStream fileOpen = fs.open(pt);
            BufferedReader br = new BufferedReader(new InputStreamReader(fileOpen));
            props.load(br);
        } catch (Exception e) {
            LOG.error(e);
        }
    }

}
于 2013-03-01T15:39:04.813 回答