Spring注解驱动开发——属性赋值 @Value
2021/8/3 23:06:10
本文主要是介绍Spring注解驱动开发——属性赋值 @Value,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
使用value赋值
1丶基本数值
2丶可以写SpEL; #{}
3丶可以写${};取出配置文件中的值(在运行环境变量里面的值)
1丶基本数值&可以写SpEL; #{}
一丶配置类
package com.mongoubiubiu.conf; import org.springframework.beans.factory.annotation.Configurable; import org.springframework.context.annotation.Bean; import com.mongoubiubiu.bean.Person; @Configurable public class MainConfigOfPropertyValues { @Bean public Person person(){ return new Person(); } }
二丶测试类
package com.mongougbiubiu.test; import org.junit.Test; import org.springframework.context.ApplicationContext; import org.springframework.context.annotation.AnnotationConfigApplicationContext; import org.springframework.context.annotation.Scope; import com.mongoubiubiu.bean.Person; import com.mongoubiubiu.conf.MainConfigOfLifeCycle; import com.mongoubiubiu.conf.MainConfigOfPropertyValues; public class IOCTest_propertyValues { @Test public void Test01(){ //创建ioc 容器 AnnotationConfigApplicationContext applica= new AnnotationConfigApplicationContext(MainConfigOfPropertyValues.class); Person person=applica.getBean(Person.class); System.out.println(person); String [] af=applica.getBeanNamesForType(Person.class); for (String string : af) { System.out.println(string); } } }
三丶实体类
package com.mongoubiubiu.bean; import org.springframework.beans.factory.annotation.Value; public class Person { public Person() { super(); // TODO Auto-generated constructor stub } public Person(String name, Integer age) { super(); this.name = name; this.age = age; } /** *使用value赋值 *1丶基本数值 *2丶可以写SpEL; #{} *3丶可以写${};取出配置文件中的值(在运行环境变量里面的值) */ @Value("李四") private String name; @Value("#{200-99}") private Integer age; public String getName() { return name; } public void setName(String name) { this.name = name; } public Integer getAge() { return age; } public void setAge(Integer age) { this.age = age; } @Override public String toString() { return "Person [name=" + name + ", age=" + age + "]"; } }
四丶返回
2丶基本数值&可以写SpEL; #{}
一丶person.properties
person.name=mangoubiubiu person.age=18
二丶实体类
package com.mongoubiubiu.bean; import org.springframework.beans.factory.annotation.Value; public class Person { public Person() { super(); // TODO Auto-generated constructor stub } public Person(String name, Integer age) { super(); this.name = name; this.age = age; } /** *使用value赋值 *1丶基本数值 *2丶可以写SpEL; #{} *3丶可以写${};取出配置文件中的值(在运行环境变量里面的值) */ @Value("${person.name}") private String name; @Value("${person.age}") private Integer age; public String getName() { return name; } public void setName(String name) { this.name = name; } public Integer getAge() { return age; } public void setAge(Integer age) { this.age = age; } @Override public String toString() { return "Person [name=" + name + ", age=" + age + "]"; } }
三丶配置类使用@PropertySource 注解读取 properties 配置信息
package com.mongoubiubiu.conf; import org.springframework.beans.factory.annotation.Configurable; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.PropertySource; import com.mongoubiubiu.bean.Person; @PropertySource(value={"classpath:/person.properties"}) @Configurable public class MainConfigOfPropertyValues { @Bean public Person person(){ return new Person(); } }
四丶测试类
package com.mongougbiubiu.test; import org.junit.Test; import org.springframework.context.ApplicationContext; import org.springframework.context.annotation.AnnotationConfigApplicationContext; import org.springframework.context.annotation.Scope; import org.springframework.core.env.ConfigurableEnvironment; import com.mongoubiubiu.bean.Person; import com.mongoubiubiu.conf.MainConfigOfLifeCycle; import com.mongoubiubiu.conf.MainConfigOfPropertyValues; public class IOCTest_propertyValues { @Test public void Test01(){ //创建ioc 容器 AnnotationConfigApplicationContext applica= new AnnotationConfigApplicationContext(MainConfigOfPropertyValues.class); Person person=applica.getBean(Person.class); System.out.println(person); System.out.println("环境变量获取在下面哈============"); ConfigurableEnvironment config=applica.getEnvironment(); String s=config.getProperty("person.name"); System.out.println(s); String [] af=applica.getBeanNamesForType(Person.class); for (String string : af) { System.out.println(string); } } }
五丶测试
这篇关于Spring注解驱动开发——属性赋值 @Value的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-10百万架构师第十三课:源码分析:Spring 源码分析:Spring核心IOC容器及依赖注入原理|JavaGuide
- 2025-01-10便捷好用的电商API工具合集
- 2025-01-09必试!帮 J 人团队解决物流错发漏发的软件神器!
- 2025-01-09不容小觑!助力 J 人物流客服安抚情绪的软件!
- 2025-01-09为什么医疗团队协作离不开智能文档工具?
- 2025-01-09惊叹:J 人团队用啥软件让物流服务快又准?
- 2025-01-09如何利用数据分析工具优化项目资源分配?4种工具推荐
- 2025-01-09多学科协作难?这款文档工具可以帮你省心省力
- 2025-01-09团队中的技术项目经理TPM:工作内容与资源优化策略
- 2025-01-09JIT生产管理法:优化流程,提升竞争力的秘诀