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

一、@Value注解注入属性

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

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

使用@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观察被注入的属性:

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

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

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

新建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;
  }
}

三、注入实体对象

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

修改application.yml文件:

新建三个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;
  }
}

四、自定义文件注入

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

修改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属性注入内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/Nicholas_GUB/article/details/120997989

本文链接:https://my.lmcjl.com/post/15452.html

展开阅读全文

4 评论

留下您的评论.