【系統學習SpringBoot】SpringBoot讀取Property配置
阿新 • • 發佈:2019-02-16
SpringBoot讀取Property
在web開發的過程中,經常需要自定義一些配置檔案作為全域性配置(資料庫連線之類的)。
在SpringBoot中,讀取property檔案會很簡單。
真的很簡單,,不信看下面 ▼.▼
【1】在application.yml中新增追加如下配置(yml格式)
#yml語法比起 properties更加方便,,,
xatu:
zsl:
name: 小滑鼠
age: 21
id: 10086
【2】編寫獲取配置資訊的類
package xatu.zsl.domain;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
/**
* Created by zsl on 2017/9/4.
*/
@Component
public class XatuZSLinfo {
@Value("${xatu.zsl.name}")
private String name;
@Value("${xatu.zsl.id}")
private String id;
@Value("${xatu.zsl.age}")
private int age;
public String getName () {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
}
【3】搞個測試方法,試試
@Autowired
private XatuZSLinfo properties;
@GetMapping("/getzsl")
public XatuZSLinfo getXatuZSLinfo() {
return properties;
}