SpringBoot yml配置文件读取方法详解

作者:执久呀 时间:2022-12-13 18:04:19 

yaml介绍

YAML(YAML Ain't Markup Language),一种数据序列化格式

优点:

  • 容易阅读

  • 容易与脚本语言交互

  • 以数据为核心,重数据轻格式

YANL文件扩展名

  • .yml(主流)

  • .yaml

几种数据格式比较

SpringBoot yml配置文件读取方法详解

yaml语法规则

  • 大小写敏感

  • 属性层级关系使用多行描述,每行结尾使用冒号结束

  • 使用缩进表示层级关系,同层级左侧对齐,只允许使用空格(不允许使用Tab键)

  • 属性值前面添加空格(属性名与属性值之间使用冒号+空格作为分隔)

  • #表示注释

示例:

user:
  name: zhangsan
  age: 12
users:
  -
    name: lisi
    age: 13
  -
    name: wangwu
    age: 18
likes: [game,play,having]
users1: [{name:zhangsan,age:12},{name:lisi,age:12}]

字面值表示方式

SpringBoot yml配置文件读取方法详解

数组表示方式:在属性名书写位置的下方使用减号作为数据开始符号,每行书写一个数据,减号与数据键空格分隔

SpringBoot yml配置文件读取方法详解

yaml数据读取

使用@Value读取单个数据,属性名引用方式:${一级属性名.二级属性名}

SpringBoot yml配置文件读取方法详解

controller下

package com.springboot01_02.controller;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/SpringBoot")
public class TestController {
@Value("${user.name1}")
   private String  username1;
@Value("${users[0].age}")
private String userage2;
@Value("${person.hobby[0]}")
private String personHobbyEat;
   @Value("${person.hobby[1]}")
   private String personHobbyPlay;
   @Value("${users1[0].age}")
   private String usersAge;
   @RequestMapping("/test")
   public String Test(){
       System.out.println("username->"+username1);
       System.out.println("userage->"+userage2);
       System.out.println("personHobbyEat->"+personHobbyEat);
       System.out.println("personHobbyPlay->"+personHobbyPlay);
       System.out.println("usersAge->"+usersAge);
       return "springboot is good";
   }
}

yml配置文件

user:
  name1: KC
  age: 12
users:
  -
    name: lisi
    age: 13
  -
    name: wangwu
    age: 18
person:
  name: ZH
  age: 19
  tel: 152161
  hobby:
    - eat
    - play
    - run
users1: [{name: zhangsan,age: 12},{name: lisi,age: 12}]
likes: [game,play,having]

运行结果:

SpringBoot yml配置文件读取方法详解

yaml数据读取

在配置文件中可以使用属性名引用方式引用属性

在配置文件中

SpringBoot yml配置文件读取方法详解

package com.springboot01_02.controller;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/SpringBoot")
public class TestController {
   @Value("${nowDir}")
   private String nowDir1;
   @Value("${tewDir}")
   private String tewDir1;
   @RequestMapping("/test")
   public String Test(){
       System.out.println("nowDir->"+nowDir1);
       System.out.println("towDir->"+tewDir1);
       return "springboot is good";
   }
}

运行结果:

SpringBoot yml配置文件读取方法详解

可以发现,要想让转义字符生效,就得加上双引号不然还是以字符串的形式打印出

Environment读取yaml全部属性数据

package com.springboot01_02.controller;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.beans.factory.annotation.Value;import org.springframework.core.env.Environment;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RestController;@RestController@RequestMapping("/SpringBoot")public class TestController {//使用自动装配将所有数据封装到一个Environment中    @Autowired    private Environment evn;    @RequestMapping("/test")    public String Test(){        System.out.println("----------------");        System.out.println(evn.getProperty("nowDir"));        System.out.println(evn.getProperty("users1[0].age"));        return "springboot is good";    }}

运行结果:

SpringBoot yml配置文件读取方法详解

小结:

使用Environment对象封装全部配置信息

使用@Autowired自动装配数据到Environment对象中

自定义对象封装指定数据

application.yaml配置文件中的信息

#创建类,用于封装下面的数据#有spring带我们去加载数据到对象中,且告诉spring加载这组信息#使用时从spring中直接获取信息使用datasource:  driver: com.mysql.jdbc.Driver  url: jdbc:mysql://localhost/love  username: kongchao  password: zenghui

自定义一个类

package com.springboot01_02.datesource;import lombok.Data;import org.springframework.boot.context.properties.ConfigurationProperties;import org.springframework.stereotype.Component;//1、定义数据类型模型封装yaml文件中对应的数据//2、定义为spring管控的bean@Component//3、指定加载的数据@ConfigurationProperties("datasource")//4、设置getSet方法等@Datapublic class MyDateSource {    private  String driver;    private  String url;    private  String username;    private  String password;}

使用了@Date,在pom.xml中导入lombok

       <dependency>            <groupId>org.projectlombok</groupId>            <artifactId>lombok</artifactId>            <version>1.16.10</version>        </dependency>

测试类下

package com.springboot01_02.controller;import com.springboot01_02.datesource.MyDateSource;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RestController;@RestController@RequestMapping("/SpringBoot")public class TestController {@Autowired    private MyDateSource dateSource;    @RequestMapping("/test")    public String Test(){        System.out.println(dateSource);        return "springboot is good";    }}

运行访问localhost/SpringBoot/test即可得到:

SpringBoot yml配置文件读取方法详解

小结:

使用@ConfigurationProperties注解绑定配置信息到封装类中

封装类需要定义为Spring管理的bean(使用注解@Component),否则无法进行属性注入

来源:https://blog.csdn.net/weixin_60719453/article/details/126954516

标签:SpringBoot,读取,yml,配置
0
投稿

猜你喜欢

  • 关于SpringMVC在Controller层方法的参数解析详解

    2022-10-29 01:06:10
  • 一篇文章让你弄懂Java运算符

    2023-12-02 20:16:41
  • List集合对象中按照不同属性大小排序的实例

    2023-06-07 14:27:41
  • Android XML設置屏幕方向(android:screenOrientation)详解

    2021-09-08 09:46:35
  • Unity3D实现飞机大战游戏(2)

    2021-11-16 10:41:38
  • Java Swing程序设计实战

    2023-04-09 07:05:42
  • java实现文件归档和还原

    2023-02-28 23:09:51
  • 基于Android XML解析与保存的实现

    2023-05-25 18:54:32
  • java基于UDP实现在线聊天功能

    2021-06-08 00:01:44
  • vs2005中总是保留最近打开的项目和文件的记录

    2021-07-14 16:53:45
  • Flutter Zone异常处理方法及基本原理

    2021-11-25 23:30:30
  • Java正则多字符串匹配替换

    2021-12-16 02:24:48
  • Spring中@Scheduled和HttpClient的连环坑

    2023-10-19 23:06:00
  • Android mvvm之LiveData原理案例详解

    2023-09-29 11:49:26
  • MVPXlistView展示上拉下拉效果

    2022-10-30 10:45:38
  • Java JVM字节码指令集总结整理与介绍

    2021-09-18 17:10:20
  • Android WebView如何判定网页加载的错误

    2023-09-22 14:33:20
  • 详解Android 全局弹出对话框SYSTEM_ALERT_WINDOW权限

    2023-06-28 04:07:44
  • Android加载Assets目录中Xml布局文件

    2021-06-19 14:59:53
  • Java8 Collectors.toMap的坑

    2023-06-24 14:47:48
  • asp之家 软件编程 m.aspxhome.com