使用 Spring 注入枚举

发布于 2024-09-24 17:12:06 字数 2469 浏览 2 评论 0 原文

我正在尝试使用 通过 spring 上下文注入 java 枚举。

这就是我所做的。在我的 spring 配置中,我遵循以下条目

<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>

Here,我尝试利用 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;
  }
}

这是 bean:

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

bean 从具有名称属性设置器的基类扩展

这是类定义:

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

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

任何指针都受到高度赞赏。

  • 谢谢

I'm trying to inject java enum through spring context using <util:constant.

Here's what I've done. In my spring config, I've following entry

<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>

Here, I'm trying to leverage an Enum ADSKContentGroup to be injected in my bean's (ADSKContentGroup) ame property.

Here's the enum :

public enum MetadataTypeEnum {
  CONTENT_GROUP ("ADSKContentGroup"),

  private String metadataType;

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

Here's the bean :

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

The bean extends from a base class which has the setter for name attribute

Here's the class definition:

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

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

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

In runtime, I'm getting the following exception

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

Not sure what's going wrong with my approach.

Any pointer is highly appreciated.

  • Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

森林迷了鹿 2024-10-01 17:12:06

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

Your Metadata class is ill-designed JavaBean, it does not conform to the spec: The setter uses a parameter of type MetadataTypeEnum, but the return type of the getter is String.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文