spring boot从前端获取输入框的值,保存到配置文件,工具类里获取配置文件里的值

时间:2024-05-19 12:42:38

前端获取到值保存到配置文件

新建配置文件 src\main\resources\config.properties
配置文件该值的键: msp.client.eui

代码:
PropertiesConfiguration config = new PropertiesConfiguration(“src\main\resources\config.properties”);
config.setProperty(“msp.client.eui”, clientEUI);
config.save();
spring boot从前端获取输入框的值,保存到配置文件,工具类里获取配置文件里的值

使用

在类上用 import org.springframework.stereotype.Component 注解让该类被spring管理
spring boot从前端获取输入框的值,保存到配置文件,工具类里获取配置文件里的值
使用如下方法获取配置文件里的值
/**

  • 获取配置文件里的值
  • @param propertyName
  • @return
  • @throws IOException
    */
    public String getProperty(String propertyName) throws IOException{
    Properties props = new Properties();
    InputStream inputStream = this.getClass().getClassLoader().getResourceAsStream(“config.properties”);
    props.load(inputStream);
    String phoneLimit = props.getProperty(propertyName);
    return phoneLimit;

}

从配置文件获取值
String property =getProperty(“msp.client.eui”);