Spring Boot 提供了一种使用注解设置默认值的方式,即使用 @Value 注解。
在需要设置默认值的字段上添加 @Value 注解,并在注解值中指定默认值。
例如:
@Value("${my.property:defaultValue}")
private String myProperty;
这里通过 ${my.property:defaultValue} 指定了 my.property 的默认值为 defaultValue。如果 my.property 在配置文件中未设置,则 myProperty 将被赋值为 defaultValue。
另外还可以使用 @ConfigurationProperties 注解来设置默认值。
例如:
@ConfigurationProperties(prefix ="my")
public class MyProperties {
private String property = "defaultValue";
// getter and setter
}
这里通过 prefix = "my" 指定了属性前缀为 my,在配置文件中定义 my.property = xxx 可以修改 property 属性的值。文章来源:https://www.toymoban.com/news/detail-525235.html
在启动类上添加 @EnableConfigurationProperties(MyProperties.class) 可以使用 MyProperties 中的配置。文章来源地址https://www.toymoban.com/news/detail-525235.html
到了这里,关于springboot 注解设置默认值的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!