Spring中XML配置注入枚举类型值 博客分类: JavaSpring springenum枚举xmlbean
程序员文章站
2024-03-14 18:53:11
...
http://*.com/questions/14072314/inject-the-value-of-an-enum-into-a-property-using-spring
即使用方式即可
<util:constant static-field="package.MyEnum.ABC"/>
<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"/>
上一篇: AES 加解密算法