美文网首页
@Value 想要非必填 required false

@Value 想要非必填 required false

作者: crocodile_b | 来源:发表于2018-03-24 17:44 被阅读216次

Working on the assumption that by 'not required' you mean null then...

You have correctly noted that you can supply a default value to the right of a : character. Your example was @Value("${myValue:DEFAULT}").

You are not limited to plain strings as default values. You can use SPEL expressions, and a simple SPEL expression to return null is:

@Value("${myValue:#{null}}")

相关文章

网友评论

      本文标题:@Value 想要非必填 required false

      本文链接:https://www.haomeiwen.com/subject/glokdxtx.html