如何将环境变量中的 spring 属性设置为空值

Cam*_*amW 3 java spring spring-boot spring-properties

Spring属性可以从环境变量绑定:https://docs.spring.io/spring-boot/docs/current/reference/html/features.html#features.external-config.typesafe-configuration-properties.relaxed-binding 。环境变量

我尝试过各种形式的null,NULL#{null}最终总是failed to convert java.lang.String to java.time.Duration (caused by java.lang.IllegalArgumentException: 'null' is not a valid duration)

如何null从环境变量中设置值?

And*_*son 5

您不能从环境变量(或任何其他属性源)设置空值。此 Spring Boot 问题正在跟踪添加对绑定null值的支持。