用Spring注入一个枚举

时间:2010-09-24 21:51:41

标签: java spring enums

我正在尝试使用<util:constant通过spring上下文注入java enum。

这就是我所做的。在我的春季配置中,我进入了

<util:constant id="Content" static-field="com.test.taxonomy.model.MetadataTypeEnum.CONTENT_GROUP" />
<util:constant id="Category" static-field="com.test.taxonomy.model.MetadataTypeEnum.CATEGORY" />   

<bean id="ADSKContentGroup" class="com.test.taxonomy.model.ADSKContentGroup" scope="prototype">
  <property name="name" ref="Content" /> 
</bean>

在这里,我正在尝试利用Enum ADSKContentGroup注入我的bean(ADSKContentGroup)ame属性。

这是枚举:

public enum MetadataTypeEnum {
  CONTENT_GROUP ("ADSKContentGroup"),

  private String metadataType;

  private MetadataTypeEnum(String metadataType) {
    this.metadataType = metadataType;
  }
  public String getMetadataType() {
    return this.metadataType;
  }
}

这是豆子:

public class ADSKContentGroup extends Metadata {
  public ADSKContentGroup(){
  }
}

bean从具有name属性

的setter的基类扩展

这是类定义:

public class Metadata {
  private MetadataTypeEnum name;
  private String value;

  public String getName() {
    return name.getMetadataType();
  }

  public void setName(MetadataTypeEnum name) {
    this.name = name;
  }
}

在运行时,我收到以下异常

ERROR com.test.taxonomy.plugin.TaxonomyPluginImpl  - Error in creating metadata mapping :Error creating bean with name 'ADSKContentGroup' defined in ServletContext resource [/WEB-INF/beans.xml]: Initialization of bean failed; nested exception is org.springframework.beans.TypeMismatchException: Failed to convert property value of type [com.test.taxonomy.model.MetadataTypeEnum] to required type [java.lang.String] for property 'name'; nested exception is java.lang.IllegalArgumentException: Original must not be null  
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'ADSKContentGroup' defined in ServletContext resource [/WEB-INF/beans.xml]: Initialization of bean failed; nested exception is org.springframework.beans.TypeMismatchException: Failed to convert property value of type [com.test.taxonomy.model.MetadataTypeEnum] to required type [java.lang.String] for property 'name'; nested exception is java.lang.IllegalArgumentException: Original must not be null

不确定我的方法出了什么问题。

非常感谢任何指针。

  • 感谢

1 个答案:

答案 0 :(得分:1)

您的Metadata类是设计不合理的JavaBean,它不符合规范:setter使用类型为MetadataTypeEnum的参数,但getter的返回类型为String