Can I set null as the default value for a @Value in Spring? November 23, 2022 by Tarik This is really old, but you can use Spring EL now, e.g. @Value("${stuff.value:#{null}}") See this question.