如何使用Spring Boot从java属性文件中读取数据

2022-09-01 04:58:02

我有一个弹簧启动应用程序,我想从我的文件中读取一些变量。事实上,下面的代码就是这样做的。但我认为有一个很好的方法来选择这种替代方案。application.properties

Properties prop = new Properties();
InputStream input = null;

try {
    input = new FileInputStream("config.properties");
    prop.load(input);
    gMapReportUrl = prop.getProperty("gMapReportUrl");
} catch (IOException ex) {
    ex.printStackTrace();
} finally {
    ...
}

答案 1

您可以使用 将配置外部化到属性文件。有多种方法可以获取属性:@PropertySource

1. 通过将属性值与 PropertySourcesPlaceholderConfigurer @Value分配给字段,以解析 @Value 中的 ${}

@Configuration
@PropertySource("file:config.properties")
public class ApplicationConfiguration {

    @Value("${gMapReportUrl}")
    private String gMapReportUrl;

    @Bean
    public static PropertySourcesPlaceholderConfigurer propertyConfigInDev() {
        return new PropertySourcesPlaceholderConfigurer();
    }

}

2. 使用环境获取属性值:

@Configuration
@PropertySource("file:config.properties")
public class ApplicationConfiguration {

    @Autowired
    private Environment env;

    public void foo() {
        env.getProperty("gMapReportUrl");
    }

}

希望这能有所帮助


答案 2

我创建了以下类

配置实用性.java

@Configuration
public class ConfigUtility {

    @Autowired
    private Environment env;

    public String getProperty(String pPropertyKey) {
        return env.getProperty(pPropertyKey);
    }
} 

并按如下方式调用以获取 application.properties 值

我的班级.java

@Autowired
private ConfigUtility configUtil;

public AppResponse getDetails() {

  AppResponse response = new AppResponse();
    String email = configUtil.getProperty("emailid");
    return response;        
}

应用程序.属性

emailid=sunny@domain.com

单元测试,按预期工作...