您现在的位置是:网站首页 > 学无止境
springboot @ConfigurationProperties与@Value区别
简介springbootConfigurationProperties与Value区别ConfigurationProperties批量
springboot @ConfigurationProperties与@Value区别
@ConfigurationProperties批量注入配置属性值,@Value是一个一个注入配置属性值
@ConfigurationProperties支持松散语法,而@Value不支持松散语法
@ConfigurationProperties不支持 SpEL正则表达式 ,而@Value支持SpEL正则表达式
@ConfigurationProperties支持 JSR303校验 ,而@Value不支持JSR303校验