有没有办法为使用@Value注释的模型下的字段提供默认值。例如:class Book { List<String> authors;在上面的模型中,Jackson将authors从json有效负载反序列化为null,将authors设置为null,但我希望author使用[]作为默认值,而不是null。我知道下面的内容不会起作用,因为字段由于@Value而变为private final
List<String> auth
我需要为一个类型为java.time.Duration的实例变量指定默认值。public class Test { private Duration commitIntervalnested exception is org.springframework.beans.ConversionNotSupportedException