我可以在Spring中将null设置为@Value的默认值吗?

我可以在Spring中将null设置为@Value的默认值吗?,第1张

我可以在Spring中将null设置为@Value的默认值吗?

您必须设置PropertyPlaceholderConfigurer的nullValue
。例如,我使用的是字符串

@null
但您也可以将空字符串用作nullValue。

<bean id="propertyConfigurer" >    <!-- config the location(s) of the properties file(s) here -->    <property name="nullValue" value="@null" /></bean>

现在,您可以使用字符串

@null
来表示
null

@Value("${stuff.value:@null}")private String value;

请注意:上下文名称空间目前不支持null值。你不能用

<context:property-placeholder null-value="@null" ... />

在Spring 3.1.1中测试



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5601196.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存