024 使用@PropertySoruce 註入配置文件
阿新 • • 發佈:2018-05-27
fig nbsp code span @value extc context [1] 文件
一 .概述
在前面我們說到,我們獲取屬性值的最大途徑就是從外部的配置文件之中獲取.
spring為我們提供了@PropertySoruce註解完成屬性文件的屬性值的獲取.
二 .測試
[1] 創建一個配置文件
trek.name=trek
trek.age=11
[2]配置類
@Configuration
@PropertySource(value="classpath:value.properties")
public class PropertyConfig {
@Value("${trek.name}")
private String name ;
@Value("${trek.age}")
private Integer age;
@Bean
public Person person() {
Person person = new Person();
person.setName(name);
person.setAge(age);
return person;
}
}
我們使用${}的方式將配置文件的屬性註入到配置類之中.
測試類:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes=PropertyConfig.class)
public class PropertyTest {
@Autowired
private ApplicationContext context;
@Test
public void test() {
System.out.println(context.getBean("person"));
}
}
就是那麽簡單,很容易就獲取了配置文件的屬性了.
024 使用@PropertySoruce 註入配置文件