时间:2021-05-20
1 简单属性值注入
package com.xy.test1;import org.springframework.beans.factory.annotation.Value;import org.springframework.stereotype.Service;@Service // 需要被注入属性值的类需要被Spring管理 public class PropertiesService1 { // 利用@Value注解,即使没有该属性或者属性文件也不会报错 // @Value输入属性值name,默认值xydefault @Value("${name:xydefault}") private String name; // @Value输入属性值num,默认值-1 @Value("${num:-1}") private Integer num; // @Value输入属性值type,默认值-2 @Value("${type:-2}") private Integer type; public void getInfo() { System.out.println("name:" + name + ",num:" + num + ",type:" + type); }}#src/main/resource新建文件info.properties name=xy1 num=101 type=1 <!-- applicationContext.xml文件 --><!-- 扫描测试属性包中的类,要注入属性类需要被Spring管理 --><context:component-scan base-package="com.xy.test1" /><!--方法1--><!-- <context:property-placeholder location="classpath*:info/info.properties" /> --><!--方法2--><bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="order" value="1" /> <property name="locations"> <list> <value>classpath:info/info.properties</value> </list> </property></bean>2 利用util标签注入复杂属性值
package com.xy.test2;import java.util.List;import java.util.Map;import java.util.Properties;import org.springframework.beans.factory.annotation.Value;import org.springframework.stereotype.Service;/** * 该类必须被Spring容器管理属性才可以被注入。利用@Value注解,即使没有该属性或者属性文件也不会报错 */@Service public class PropertiesService2 { @Value("#{testPro}") private Properties pros; @Value("#{testList}") private List<String> myList; @Value("#{testMap}") private Map<Integer, String> myMap; public Properties getPros() { return pros; } public void setPros(Properties pros) { this.pros = pros; } public List<String> getMyList() { return myList; } public void setMyList(List<String> myList) { this.myList = myList; } public Map<Integer, String> getMyMap() { return myMap; } public void setMyMap(Map<Integer, String> myMap) { this.myMap = myMap; }}#src/main/resource新建文件info2.properties name=xy2 num=102 type=2 <!-- applicationContext.xml --> <!-- 扫描测试属性包中的类,要注入属性类需要被Spring管理 --> <context:component-scan base-package="com.xy.test2" /> <!-- properties --> <util:properties id="testPro" location="classpath:info/info2.properties" /> <!-- list --> <util:list id="testList" list-class="java.util.ArrayList"> <value>first</value> <value>second</value> <value>third</value> </util:list> <!-- map --> <util:map id="testMap" map-class="java.util.HashMap"> <entry key="1" value="first" /> <entry key="2" value="second" /> <entry key="3" value="third" /> </util:map>总结
以上就是本文关于Spring中利用配置文件和@value注入属性值代码详解的全部内容,希望对大家有所帮助。有什么问题可以随时留言,小编会及时回复大家的。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
JSPSpring配置文件中传值的实例详解通过spring提供方法,在配置文件中取传值调用get方法targetObject:指定调用的对象propertyPa
关于注入数据说明1.不通过配置文件注入数据通过@Value将外部的值动态注入到Bean中,使用的情况有:注入普通字符串注入操作系统属性注入表达式结果注入其他Be
Springboot通过@Value注解将配置文件中的属性注入到容器内组件中(可用在@Controller、@Service、@Configuration、@C
一前言本篇内容包括spring运行时读取配置文件的多种方式和SpEl表达式入门基础;二运行时读取配置文件spring运行时读取配置文件值提供了2种方式属性占位符
本实例中还涉及到Spring中采用多个配置文件,也涉及到对日期格式的注入-------更加灵活Date属性类:DatePropertyInjection.jav