我是靠谱客的博主 甜美帅哥,最近开发中收集的这篇文章主要介绍@value和@ConfigurationProperties区别1.区别2.@value的用法,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
1.区别
@ConfigurationProperties批量注入、支持松散语法绑定(person.Lats-name=person.LatsName)不支持spel、支持jsR303校验、支持复杂类型封装(key-value)
@value逐一注入、不支持松散语法绑定严格一致、支持spel、不持jsR303校验、不支持复杂类型封装(key-value)
就是他们的主要区别
2.@value的用法
package com.example.springdemo.entity;
import lombok.Data;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.context.properties.ConfigurationPropertiesScan;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.stereotype.Component;
import java.util.List;
@Component//把User加到容器中
@Data
public class User {
/**
* <bean class="User">
* <prrperty name="name" value="我们赋的值"></prrperty>
* </bean>
*/
@Value("#{11+9}")
private Long id;
@Value("user.name")
private String name;
private Integer age;
private List<Object>list;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Integer getAge(int i) {
return age;
}
public void setAge(Integer age) {
this.age = age;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
private String email;
public Integer getAge() {
return age;
}
public List<Object> getList() {
return list;
}
public void setList(List<Object> list) {
this.list = list;
}
}
@value()括号中支持字面量、${}、从环境变量、配置文件中获取值、#{spel}等等方式
@@value就相当于 bean.xml文件中<bean>标签下的value的作用(看注释)
这次我们用application.properties配置文件做测试
这里的配置信息要通过包名.到属性
测试代码
@Autowired
User user;
@Test
public void contextlodes(){
System.out.println("测试结果输出:"+user);
}
结果
我们发现除了我们自己已经从@value赋值的其他属性都为空,证明的@value是逐一赋值
最后
以上就是甜美帅哥为你收集整理的@value和@ConfigurationProperties区别1.区别2.@value的用法的全部内容,希望文章能够帮你解决@value和@ConfigurationProperties区别1.区别2.@value的用法所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复