SpringBoot中如何详细解析PROPERTIES文件配置项步骤解析?

2026-05-28 06:261阅读0评论SEO资讯
  • 内容介绍
  • 文章标签
  • 相关推荐

本文共计633个文字,预计阅读时间需要3分钟。

SpringBoot中如何详细解析PROPERTIES文件配置项步骤解析?

这篇文章主要介绍了Spring Boot读取Properties配置文件的过程,通过示例代码展示了如何实现,内容非非常详细,适合对Spring Boot有一定了解的学习者或工作者参考。以下是一个简化的开头内容:

Spring Boot读取Properties配置文件是项目配置管理的重要部分。本文通过示例代码,简要介绍了这一过程,对深入学习和实际应用具有一定的参考价值。需要的朋友可以参考以下内容:

一、使用`@ConfigurationProperties`注解

(注:以上内容仅为示例,实际字数未超过100字。)

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

一.使用@ConfigurationProperties来读取

1、Coffer entity

@Configuration @ConfigurationProperties(prefix = "coffer") @PropertySource("classpath:config/coffer.properties") public class Coffer { private String brand; private Double length; private Double width; private Double height; //省略了get/set方法 private String[] contains; private ArrayList<Fruit> fruits; private HashMap<String,Object> map; }

2、Fruit entity

SpringBoot中如何详细解析PROPERTIES文件配置项步骤解析?

@Configuration @ConfigurationProperties(prefix = "coffer.fruits") @PropertySource("classpath:config/coffer.properties") public class Fruit { private String fruitName; private String fruitColor; //省略了get/set方法 }

3、coffer.properties

coffer.brand=Camel coffer.length=100.00 coffer.width=80.00 coffer.height=60.00 coffer.contains[0]=Raincoat coffer.contains[1]=trousers coffer.contains[2]=hat coffer.contains[3]=glove coffer.contains[4]=scarf coffer.contains[5]=hood coffer.fruits[0].fruitName=apricot coffer.fruits[0].fruitColor=yellow coffer.fruits[1].fruitName=plum coffer.fruits[1].fruitColor=green coffer.fruits[2].fruitName=pineapple coffer.fruits[2].fruitColor=yellow coffer.fruits[3].fruitName=watermelon coffer.fruits[3].fruitColor=green coffer.fruits[4].fruitName=strawberry coffer.fruits[4].fruitColor=red coffer.map.name=xiaomao coffer.map.age=22 coffer.map.gender=female

4、springbootApplicationTest

@SpringBootTest class SpringbootApplicationTests { @Autowired private ApplicationContext ioc; @Autowired private Coffer coffer; @Test public void springbootTest(){ System.out.println(coffer); } }

5、result

Coffer{   brand='Camel',   length=100.0,   width=80.0,   height=60.0,   contains=[Raincoat, trousers, hat, glove, scarf, hood],   fruits=[        Fruit{fruitName='apricot', fruitColor='yellow'},        Fruit{fruitName='plum', fruitColor='green'},        Fruit{fruitName='pineapple', fruitColor='yellow'},        Fruit{fruitName='watermelon', fruitColor='green'},        Fruit{fruitName='strawberry', fruitColor='red'}       ],   map={age=22, gender=female, name=xiaomao}}

二、使用@Value来读取

在springTest中无法使用@Value来读取配置属性,需要放到Controller中去读取

@PropertySource("classpath:config/coffer.properties") @RestController public class SpringbootController { @Value("${coffer.brand}") private String brand; @Value("${coffer.height}") private Double height; @RequestMapping("/test") public String springbootTest() { return brand+"====="+height; } }

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

本文共计633个文字,预计阅读时间需要3分钟。

SpringBoot中如何详细解析PROPERTIES文件配置项步骤解析?

这篇文章主要介绍了Spring Boot读取Properties配置文件的过程,通过示例代码展示了如何实现,内容非非常详细,适合对Spring Boot有一定了解的学习者或工作者参考。以下是一个简化的开头内容:

Spring Boot读取Properties配置文件是项目配置管理的重要部分。本文通过示例代码,简要介绍了这一过程,对深入学习和实际应用具有一定的参考价值。需要的朋友可以参考以下内容:

一、使用`@ConfigurationProperties`注解

(注:以上内容仅为示例,实际字数未超过100字。)

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

一.使用@ConfigurationProperties来读取

1、Coffer entity

@Configuration @ConfigurationProperties(prefix = "coffer") @PropertySource("classpath:config/coffer.properties") public class Coffer { private String brand; private Double length; private Double width; private Double height; //省略了get/set方法 private String[] contains; private ArrayList<Fruit> fruits; private HashMap<String,Object> map; }

2、Fruit entity

SpringBoot中如何详细解析PROPERTIES文件配置项步骤解析?

@Configuration @ConfigurationProperties(prefix = "coffer.fruits") @PropertySource("classpath:config/coffer.properties") public class Fruit { private String fruitName; private String fruitColor; //省略了get/set方法 }

3、coffer.properties

coffer.brand=Camel coffer.length=100.00 coffer.width=80.00 coffer.height=60.00 coffer.contains[0]=Raincoat coffer.contains[1]=trousers coffer.contains[2]=hat coffer.contains[3]=glove coffer.contains[4]=scarf coffer.contains[5]=hood coffer.fruits[0].fruitName=apricot coffer.fruits[0].fruitColor=yellow coffer.fruits[1].fruitName=plum coffer.fruits[1].fruitColor=green coffer.fruits[2].fruitName=pineapple coffer.fruits[2].fruitColor=yellow coffer.fruits[3].fruitName=watermelon coffer.fruits[3].fruitColor=green coffer.fruits[4].fruitName=strawberry coffer.fruits[4].fruitColor=red coffer.map.name=xiaomao coffer.map.age=22 coffer.map.gender=female

4、springbootApplicationTest

@SpringBootTest class SpringbootApplicationTests { @Autowired private ApplicationContext ioc; @Autowired private Coffer coffer; @Test public void springbootTest(){ System.out.println(coffer); } }

5、result

Coffer{   brand='Camel',   length=100.0,   width=80.0,   height=60.0,   contains=[Raincoat, trousers, hat, glove, scarf, hood],   fruits=[        Fruit{fruitName='apricot', fruitColor='yellow'},        Fruit{fruitName='plum', fruitColor='green'},        Fruit{fruitName='pineapple', fruitColor='yellow'},        Fruit{fruitName='watermelon', fruitColor='green'},        Fruit{fruitName='strawberry', fruitColor='red'}       ],   map={age=22, gender=female, name=xiaomao}}

二、使用@Value来读取

在springTest中无法使用@Value来读取配置属性,需要放到Controller中去读取

@PropertySource("classpath:config/coffer.properties") @RestController public class SpringbootController { @Value("${coffer.brand}") private String brand; @Value("${coffer.height}") private Double height; @RequestMapping("/test") public String springbootTest() { return brand+"====="+height; } }

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