欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Spring中XML配置注入枚举类型值

程序员文章站 2022-06-17 16:29:58
...
http://*.com/questions/14072314/inject-the-value-of-an-enum-into-a-property-using-spring

<bean id="firstKey" class="org.springframework.beans.factory.config.MethodInvokingFactoryBean">
  <property name="targetObject"><util:constant static-field="package.MyEnum.ABC"/></property>
  <property name="targetMethod" value="value" />
</bean>


即使用方式即可
<util:constant static-field="package.MyEnum.ABC"/>