java-使用工厂方法中定义的属性

前端之家收集整理的这篇文章主要介绍了java-使用工厂方法中定义的属性 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我编写了一个工厂bean,它根据应用程序特定的属性文件中配置的属性创建一个缓存管理器.

概念是可以选择多个实现,每个实现都使用其他配置属性.

例如:

> noop缓存,不带参数,
> ehcache与#max个对象
>具有多个ip和端口配置的内存缓存.

我认为最好不要在application-context.xml中指定所有特定于缓存的应用程序参数,而是从现有属性源中读取它们.

我的尝试是使用EnvironementAware接口来访问环境.但是似乎使用< context:property-placeholder>配置的属性文件不包含在PropertiesSources中.

example.properties

cache.implementation=memcached
cache.memcached.servers=server1:11211,server2:11211

application-context.xml

<context:property-placeholder location="example.properties"/>
<bean id="cacheManager" class="com.example.CacheManagerFactory"/>

在CacheManagerFactory.java中

public class CacheManagerFactory implements factorybean<CacheManager>,EnvironmentAware {

    private Environement env;

    @Override
    public CacheManager getObject() throws Exception {
        String impl = env.getrequiredProperty("cache.implementation"); // this fails
    //Do something based on impl,which requires more properties.
    }

    @Override
    public void setEnvironment(Environment env) {
        this.env = env;
    }

    @Override
    public Class<?> getObjectType() {
        return CacheManager.class;
    }

    @Override
    public boolean isSingleton() {
        return true;
    }

}
最佳答案
在这样的配置文件中:

 <context:property-placeholder location="classpath:your.properties" ignore-unresolvable="true"/>
  ...
 <property name="email" value="${property1.email}"/>
 <!-- or -->
 <property name="email">
   <value>${property1.email}</value>
 </property>

或在代码中:

@Value("${cities}")
private String cities;

your.properties包含以下内容

cities = my test string 
property1.email = answer@stackvoerflow.com
原文链接:https://www.f2er.com/spring/531845.html

猜你在找的Spring相关文章