溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

springboot中怎么配置文件綁定

發(fā)布時間:2021-08-07 14:06:39 來源:億速云 閱讀:97 作者:Leah 欄目:編程語言

這期內(nèi)容當(dāng)中小編將會給大家?guī)碛嘘P(guān)springboot中怎么配置文件綁定,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

先創(chuàng)建一個peron類,然后需要注解configurationProperties(prefix ="person")<br data-filtered="filtered">然后需要加一個@component<br data-filtered="filtered">因為只有在springboot的容器才能提供容器提供的@configurationProperties<br data-filtered="filtered">@Component@ConfigurationProperties(prefix = "person")public class Person {  private String lastName;  private Integer age;  private boolean boss;  private Date birth;  private Map<String,Object> maps;  private List<Object> lists;  private Dog dog;  public String getLastName() {    return lastName;  }  public void setLastName(String lastName) {    this.lastName = lastName;  }  public Integer getAge() {    return age;  }  public void setAge(Integer age) {    this.age = age;  }  public boolean isBoss() {    return boss;  }  public void setBoss(boolean boss) {    this.boss = boss;  }  public Date getBirth() {    return birth;  }  public void setBirth(Date birth) {    this.birth = birth;  }  public Map<String, Object> getMaps() {    return maps;  }  public void setMaps(Map<String, Object> maps) {    this.maps = maps;  }  public List<Object> getLists() {    return lists;  }  public void setLists(List<Object> lists) {    this.lists = lists;  }  public Dog getDog() {    return dog;  }  public void setDog(Dog dog) {    this.dog = dog;  }  @Override  public String toString() {    return "Person [lastName=" + lastName + ", age=" + age + ", boss=" + boss + ", birth=" + birth + ", maps="        + maps + ", lists=" + lists + ", dog=" + dog + "]";  }   }

dog類  

public class Dog {  private String Name;  private Integer age;  public String getName() {    return Name;  }  public void setName(String name) {    Name = name;  }  public Integer getAge() {    return age;  }  public void setAge(Integer age) {    this.age = age;  }  @Override  public String toString() {    return "Dog [Name=" + Name + ", age=" + age + "]";  }   }

寫完后,ide會提示需要在pom.xml中導(dǎo)入組件處理器。

<!-- 配置文件的處理器 ,配置文件進(jìn)行綁定就會有提示-->    <dependency>      <groupId>org.springframework.boot</groupId>      <artifactId>spring-boot-configuration-processor</artifactId>      <optional>true</optional>    </dependency>  </dependencies>

然后創(chuàng)建配置文件,有兩種方式,一個時yml文件,另一個時properties

1,application.yml

person: last-name: zhangsan age: 24 boss: false birth: 2017/12/5 maps: {k1: v1,k2: v2} lists: [lisi, zhangsan] dog: Name: xiaohei age: 4

2.application.properties

中文字,在eclipse中自動轉(zhuǎn)為unicode碼

person.age=24person.last-name=\u5F20\u4E09person.birth=2000/1/1person.boss=falseperson.maps.k1=value1person.maps.k2=12person.dog.name=\u5C0F\u9ED1person.dog.age=2

在test中使用spring boot的單元測試

@RunWith(SpringRunner.class)@SpringBootTestclass Helloworld01QuickApplicationTests {  @Autowired  Person person;  @Test  void contextLoads() {    System.out.println(person);  }}

運行,會看到得到配置文件中的數(shù)據(jù)

在獲取配置文件中注入值得時候,可以使用@value,也可以使用@configurationProperties;

如果只是在邏輯中獲取一下配置文件中得值,那么就使用@value

在配置文件注入值得時候也可以校驗

在類加入注解@validate

配置文件注入數(shù)據(jù)校驗

@validatepublic class person{@Emailprivate String last-name;....  }

@PropertySource("classpath:person.properties") :加載指定的配置文件

@ImportResource(“classpath:beans.xml”):導(dǎo)入spring配置文件,讓配置文件生效;

springboot推薦給容器增加組件

1.配置類--》spring配置文件

2.使用@bean給容器中增加組件;

配置文件占位符

1.隨機(jī)數(shù)

${random.value}、${random.int}、${random.long}${random.int(10)}、${random.int[1024,65536]}

2.配置文件中找不到屬性時的默認(rèn)值。

${app.name:金毛}來指定找不到屬性時的默認(rèn)值。

profile

1.多個profile文件

Profile是Spring對不同環(huán)境提供不同配置功能的支持,可以通過激活、指定參數(shù)等方式快速切換環(huán)境

一般我們在開發(fā)的時候有測試環(huán)境,開發(fā)環(huán)境等。

我們在編寫多個配置文件的時候,文件名字是application-(profile).properties/yml(這二種格式的都行)。

默認(rèn)使用application.properties.

2.yml支持多文檔塊方式

application.yml

#三個橫線屬于一個文檔塊#激活哪個環(huán)境spring: profiles:  active: test #測試環(huán)境---server: port: 8081spring: profiles: test #開發(fā)環(huán)境---server: port: 8082spring: profiles: dev

3.激活指定profile

在配置文件中指定spring.profiles.active =dev

springboot配置文件加載位置

這些配置都會加載,然后進(jìn)行互補(bǔ)配置。

上述就是小編為大家分享的springboot中怎么配置文件綁定了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI