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

SpringBoot属性注入的多种方式实例

程序员文章站 2022-04-15 09:12:36
目录一、@value注解注入属性二、@configurationproperties注解批量注入属性三、注入实体对象四、自定义文件注入总结一、@value注解注入属性springboot默认可以将ap...

一、@value注解注入属性

springboot默认可以将application.properties文件或application.yml文件中定义的属性值注入到java类中,这种注入实际上是通过java类属性的setter方法进行的。

例:将application.yml中的以下属性注入到类中:

## 自定义属性
petshop:
  name: 睿芽宠物
  introduce: 种类齐全,安全可靠
  licences: 1、上市许可证,2、疫苗许可证
  infos: "{'phone':'36xx102','address':'xx省xx市'}"

使用@value注解可以将application.yml中的属性注入,@value注解使用${属性名}的方式来声明要注入的属性,如果要注入的属性为map集合,则需要结合spel表达式进行处理。

package com.it.action;

import org.springframework.beans.factory.annotation.value;
import org.springframework.web.bind.annotation.requestmapping;
import org.springframework.web.bind.annotation.restcontroller;

import java.util.linkedhashmap;
import java.util.list;
import java.util.map;

@restcontroller
@requestmapping("/source")
public class sourceaction {
    @value("${petshop.name}")
    private string name;
    @value("${petshop.introduce}")
    private string introduce;
    @value("${petshop.licences}")
    private list<string> licences;
    @value("#{${petshop.infos}}")
    private map<string, string> infos;

    @requestmapping("/show")
    public object show() {
        map<string, object> map = new linkedhashmap();
        map.put("name", name);
        map.put("introduce", introduce);
        map.put("licences", licences);
        map.put("infos", infos);
        return map;
    }
}

访问http://localhost:8080/source/show观察被注入的属性:

SpringBoot属性注入的多种方式实例

二、@configurationproperties注解批量注入属性

@configurationproperties注解用于注入有着相同前缀的属性,注入的方式也是通过java类的setter方法来完成,但是这种方式缺少了@value注解的灵活性,也无法结合spel语言进行处理。

例:将application.yml中的以下属性注入到类中:

## 自定义属性
petshop:
  name: 睿芽宠物
  introduce: 种类齐全,安全可靠
  licences: 上市许可证,疫苗许可证
  infos:
    - phone: 36xx102
    - address: xx省xx市

新建petshop类并注入属性:

package com.it.vo;

import lombok.data;
import org.springframework.boot.context.properties.configurationproperties;
import org.springframework.stereotype.component;

import java.util.list;
import java.util.map;

@data
@component
@configurationproperties(prefix = "petshop")
public class petshop {
    private string name;
    private string introduce;
    private list<string> licences;
    private map<string, string> infos;
}

测试注入的结果:

package com.it.action;

import com.it.vo.petshop;
import org.springframework.beans.factory.annotation.autowired;
import org.springframework.web.bind.annotation.requestmapping;
import org.springframework.web.bind.annotation.restcontroller;

@restcontroller
@requestmapping("/source")
public class sourceaction {
    @autowired
    private petshop petshop;

    @requestmapping("/show")
    public object show() {
        return petshop;
    }
}

SpringBoot属性注入的多种方式实例

三、注入实体对象

使用@configurationproperties注解可以将关联的对象一同注入。

修改application.yml文件:

## 自定义属性
petshop:
  name: 睿芽宠物
  introduce: 种类齐全,安全可靠
  shopinfo:
    phone: 36xx102
    address: xx省xx市
    licences: 上市许可证,疫苗许可证
  pets:
    - pet:
      name: 金毛
      price: 3365.21
    - pet:
      name: 巴哥
      price: 2136.10

新建三个java类,并设置好引用关系:

@data
public class petshopinfo {
    private string phone;
    private string address;
    private list<string> licences;
}
@data
public class pet {
    private string name;
    private double price;
}
@data
@component
@configurationproperties(prefix = "petshop")
public class petshop {
    private string name;
    private string introduce;
    private petshopinfo shopinfo;
    private list<pet> pets;
}

测试注入结果:

@restcontroller
@requestmapping("/source")
public class sourceaction {
    @autowired
    private petshop petshop;

    @requestmapping("/show")
    public object show() {
        return petshop;
    }
}

SpringBoot属性注入的多种方式实例

四、自定义文件注入

在resource目录下新建petshop/petshop.properties文件,将application.yml中的属性转换为properties中的key-value格式:

## 自定义属性
petshop.name=睿芽宠物
petshop.introduce=种类齐全,安全可靠

petshop.shopinfo.phone=36xx102
petshop.shopinfo.address=xx省xx市
petshop.shopinfo.licences=上市许可证,疫苗许可证

petshop.pets[0].name=金毛
petshop.pets[0].price=3365.21

petshop.pets[1].name=巴哥
petshop.pets[1].price=2136.10

修改petshop类,添加@propertysource注解导入properties文件

@data
@component
@propertysource(value = "classpath:petshop/petshop.properties", encoding = "utf-8")
@configurationproperties(prefix = "petshop")
public class petshop {
    private string name;
    private string introduce;
    private petshopinfo shopinfo;
    private list<pet> pets;
}

访问http://localhost:8080/source/show发现可以得到与上例相同的结果。

总结

到此这篇关于springboot属性注入的多种方式的文章就介绍到这了,更多相关springboot属性注入内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!