您好,登錄后才能下訂單哦!
本篇內容主要講解“Spring的@Value屬性怎么賦值”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Spring的@Value屬性怎么賦值”吧!
1.建立新的配置類
@Configuration
public class MainConfigOfPropertyValues {
@Bean
public Person person(){
return new Person();
}
}
2.建立新的測試方法
public class IOCTest_PropertyValue {
AnnotationConfigApplicationContext applicationContext = new AnnotationConfigApplicationContext(MainConfigOfPropertyValues.class);
@Test
public void test01(){
printBeans(applicationContext);
System.out.println("=============");
Person person = (Person) applicationContext.getBean("person");
System.out.println(person);
}
private void printBeans(AnnotationConfigApplicationContext applicationContext){
String[] definitionNames = applicationContext.getBeanDefinitionNames();
for (String name : definitionNames) {
System.out.println(name);
}
}
}
3.通過@Value 進行賦值
<bean id="person" class="com.atguigu.bean.Person" scope="prototype" > <property name="age" value="18"></property> <property name="name" value="zhangsan"></property> </bean>
@Value("張三")private String name;
@Value("#{20-2}")private Integer age;
@Value("${person.nickName}")private String nickName;
4.通過@PropertySource 加載配置文件,并進行注入
<context:property-placeholder location="classpath:person.properties"/>
@PropertySource(value={"classpath:/person.properties"})
person.nickName=小李四
ConfigurableEnvironment environment = applicationContext.getEnvironment();String property = environment.getProperty("person.nickName");System.out.println(property);
5.拓展@Value 、@PropertySource
在處理靜態變量時候,使用上面的@Value的用法是無法獲取到配置文件中的數據的,只能獲取到null,所以要進行如下更改。
@PropertySource注解的地址可以是以下兩種:
classpath路徑:"classpath:/com/myco/app.properties"
文件對應路徑:"file:/path/to/file"
到此,相信大家對“Spring的@Value屬性怎么賦值”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。