springboot 读取application.properties配置中信息的三种方法

springboot 读取application.properties配置中信息的三种方法

*注:想了解指定义properties配置* 点击

application.properties配置信息

在这里插入图片描述

第一种:使用@value:可以注入具体的配置信息

优点:单个使用方便,灵活性高

缺点:获取配置文件信息多,需要些大量的@Value,不利于开发,增加开发者的工作量

创建application.properties配置

name=lishi
com.user.name=zhangshan
com.user.sex=nan

1.使用@Value读取配置

@RestController
public class demoController {
    /*
        ps:获取配置文件的两种方法
        1.spring boot 默认获取application.properties文件数据
            1.1:使用@value可以获取配置信息的值  
     */

    //第一种方法
    @Value("${name}")
    private String name1;

    //第一种方法
    @GetMapping("/hello1")
    public  String hello(){
        System.out.println("name1="+name1);
        return name1;
    }
    }

第二种:注入Environment 对象,并通过Environment的getProperty 方法获取配置信息的值

@RestController
public class demoController {
    /*
        ps:获取配置文件的两种方法
        1.spring boot 默认获取application.properties文件数据
            1.1:使用@value可以获取配置信息的值
            1.2.注入Environment 对象,并通过Environment的getProperty 方法获取配置信息的值
     
     */
    //第二种方法
    //注入对象
    @Autowired
    private Environment environment;

    //第二种方法
    @GetMapping("/hello2")
    public  String hello2(){
        String name2 =environment.getProperty("name");
        System.out.println("name2="+name2);
        return name2;
    }

}

第三种:

1.创建User 对象

2.使用@ConfigurationProperties(prefix = “com.user”)获取application.properties配置信息前缀

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
//获取application.properties配置信息前缀
@ConfigurationProperties(prefix = "com.user")
@Component
public class User {
    private  String name;
    private String sex;

    public String getName() {
        return name;
    }

    public String getSex() {
        return sex;
    }

    public void setSex(String sex) {
        this.sex = sex;
    }

    public void setName(String name) {
        this.name = name;
    }

}
@RestController
public class demoController {

    //第三种方法
    @Autowired
    private User user;

    //第三种方法
    @GetMapping("/hello3")
    public  String hello3(){
        String name = user.getName();

        System.out.println("name="+name);
        return user.getSex();
    }

}


  • 5
    点赞
  • 14
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Spring Boot读取application.properties的方式有多种方法。一种常用的方式是通过使用@Value注解来注入属性。可以在需要使用属性的字段、方法的参数、方法的返回上添加@Value注解,并指定要注入的属性的键名。例如,可以使用@Value("${spring.rabbitmq.host}")来注入application.properties文件spring.rabbitmq.host属性的。这样,在程序运行时,Spring Boot会自动读取属性文件,并将其注入到相应的位置。 另一种方式是使用PropertiesLoaderUtils类来读取属性文件的。首先,需要导入java.util.Properties和org.springframework.core.io.support.PropertiesLoaderUtils类。然后,可以使用PropertiesLoaderUtils的loadProperties方法来加载属性文件,然后使用getProperty方法获取具体的属性。例如,可以使用Properties properties = PropertiesLoaderUtils.loadProperties(new ClassPathResource("application.properties"))来加载application.properties文件,然后使用properties.getProperty("spring.rabbitmq.host")来获取spring.rabbitmq.host属性的。 总结起来,Spring Boot提供了多种方式来读取application.properties文件的,可以根据具体的需求选择适合的方式来获取属性。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* [Spring Boot配置文件application.properties使用](https://download.csdn.net/download/weixin_38672800/12765190)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 33.333333333333336%"] - *2* [SpringBoot获得application.properties数据的几种方式](https://blog.csdn.net/m0_67393686/article/details/124421983)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 33.333333333333336%"] - *3* [SpringBoot读取application.properties配置文件](https://blog.csdn.net/watson2017/article/details/124732267)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 33.333333333333336%"] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值