我有一个扩展属性的类,该属性用于存储一些专用键名:

public class StorageConfiguration extends Properties {
    private final String PROPERTY_NAME_1 = "property.key";

    public String getProperty1() {
        return this.getProperty(PROPERTY_NAME_1);
    }

    public void setProperty1(String property1) {
        this.setProperty(PROPERTY_NAME_1, property1);
    }
}


使用这些属性的类:

public class Storage {
    StorageConfiguration storageConfiguration;

    @Autowired
    public void setStorageConfiguration(StorageConfiguration storageConfiguration) {
        this.storageConfiguration = storageConfiguration;
    }

    public void init() {
        // Initialize properties in this class using StorageConfiguration.
    }
}


我已经设置了Spring来初始化Storage和StorageConfiguration,如下所示:

<bean id="storage" class="com.k4rthik.labs.Storage" init-method="init">
    <property name="storageConfiguration" ref="storageConfiguration" />
</bean>
<bean id="storageConfiguration"
      class="org.springframework.beans.factory.config.PropertiesFactoryBean">
    <property name="storageConfiguration">
        <props>
            <prop key="property.key">property_value</prop>
        </props>
    </property>
</bean>


我期望发生的事情是Spring将通过将属性“ property.key”设置为“ property_value”来初始化StorageConfiguration对象。

但是我得到以下异常


  org.springframework.beans.factory.BeanCreationException:错误
  创建在类路径资源中定义的名称为“ storage”的bean
  [applicationContext.xml]:无法解析对bean的引用
  设置bean属性时的“ storageConfiguration”
  'authorizationConfig';嵌套异常为
  org.springframework.beans.factory.BeanCreationException:错误
  在类路径中创建名称为“ authorizationConfig”的bean
  资源[applicationContext.xml]:设置属性值时出错;
  嵌套异常为
  org.springframework.beans.NotWritablePropertyException:无效
  bean类的属性“ storageConfiguration”
  [org.springframework.beans.factory.config.PropertiesFactoryBean]:Bean
  属性“ storageConfiguration”不可写或无效
  设置方法。设置器的参数类型是否与返回值匹配
  吸气剂的类型?


如您所见,我在Storage类中有一个用于storageConfiguration的自动连线设置器,因此我真的看不到这里有什么问题。

最佳答案

PropertiesFactoryBean创建一个类型为Properties的bean。

要创建StorageConfiguration,您可以创建一个Copy构造函数

public class StorageConfiguration
{
    public StorageConfiguration(Properties defaults) {
        super(defaults);
    }
}


然后这应该工作:

<bean id="storageConfiguration" class="..StorageConfiguration">
  <constructor-arg>

   <bean class="org.springframework.beans.factory.config.PropertiesFactoryBean">
    <property name="properties">
        <props>
            <prop key="property.key">property_value</prop>
        </props>
    </property>
  <bean>
  </constructor-arg>
</bean>


甚至:

<bean id="storageConfiguration" class="..StorageConfiguration">
  <constructor-arg>
        <props>
            <prop key="property.key">property_value</prop>
        </props>
  </constructor-arg>
</bean>

关于java - 使用Spring初始化Properties对象,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16792574/

10-10 17:33