0


springboot 注解设置默认值

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")
publicclassMyProperties{
    privateString property = "defaultValue";
    // getter and setter
}

这里通过 prefix = "my" 指定了属性前缀为 my,在配置文件中定义 my.property = xxx 可以修改 property 属性的值。

在启动类上添加 @EnableConfigurationProperties(MyProperties.class) 可以使用 MyProperties 中的配置。

标签: spring boot java spring

本文转载自: https://blog.csdn.net/weixin_35752645/article/details/129074139
版权归原作者 一筐猪的头发丝 所有, 如有侵权,请联系我们删除。

“springboot 注解设置默认值”的评论:

还没有评论