欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

springboot配置文件绑定实现解析

程序员文章站 2023-10-27 16:05:58
这篇文章主要介绍了springboot配置文件绑定实现解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下 先创建一个per...

这篇文章主要介绍了springboot配置文件绑定实现解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

先创建一个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中导入组件处理器。

<!-- 配置文件的处理器 ,配置文件进行绑定就会有提示-->
    <dependency>
      <groupid>org.springframework.boot</groupid>
      <artifactid>spring-boot-configuration-processor</artifactid>
      <optional>true</optional>
    </dependency>
  </dependencies>

然后创建配置文件,有两种方式,一个时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中自动转为unicode码

person.age=24
person.last-name=\u5f20\u4e09
person.birth=2000/1/1
person.boss=false
person.maps.k1=value1
person.maps.k2=12
person.dog.name=\u5c0f\u9ed1
person.dog.age=2

在test中使用spring boot的单元测试

@runwith(springrunner.class)
@springboottest
class helloworld01quickapplicationtests {
  @autowired
  person person;
  @test
  void contextloads() {
    system.out.println(person);
  }
}

运行,会看到得到配置文件中的数据

springboot配置文件绑定实现解析

在获取配置文件中注入值得时候,可以使用@value,也可以使用@configurationproperties;

如果只是在逻辑中获取一下配置文件中得值,那么就使用@value

springboot配置文件绑定实现解析

在配置文件注入值得时候也可以校验

在类加入注解@validate

配置文件注入数据校验

@validate
public class person{
@email
private string last-name;
....  
}

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

@importresource(“classpath:beans.xml”):导入spring配置文件,让配置文件生效;

springboot推荐给容器增加组件

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

2.使用@bean给容器中增加组件;

配置文件占位符

1.随机数

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

2.配置文件中找不到属性时的默认值。

${app.name:金毛}来指定找不到属性时的默认值。

profile

1.多个profile文件

profile是spring对不同环境提供不同配置功能的支持,可以通过激活、指定参数等方式快速切换环境

一般我们在开发的时候有测试环境,开发环境等。

我们在编写多个配置文件的时候,文件名字是application-(profile).properties/yml(这二种格式的都行)。

默认使用application.properties.

2.yml支持多文档块方式

application.yml

#三个横线属于一个文档块
#激活哪个环境
spring:
 profiles:
  active: test
 
#测试环境
---
server:
 port: 8081
spring:
 profiles: test
 
#开发环境
---
server:
 port: 8082
spring:
 profiles: dev

3.激活指定profile

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

springboot配置文件绑定实现解析

springboot配置文件加载位置

springboot配置文件绑定实现解析

这些配置都会加载,然后进行互补配置。

springboot配置文件绑定实现解析

springboot配置文件绑定实现解析

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。