中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

@value和@PropertySource注解怎么在Spring中使用

發布時間:2021-03-23 15:01:45 來源:億速云 閱讀:195 作者:Leah 欄目:編程語言

本篇文章給大家分享的是有關@value和@PropertySource注解怎么在Spring中使用,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

  • @Value注解:可以使用注入基本字符串 EL表達式,從配置文件讀取數據

  • @PropertySource用于引入單個配置文件

  • @PropertySources用于引入多個配置文件

  • @PropertySource或者@PropertySources引入的數據都是存在環境變量ConfigurableEnvironment中的

  • 在resouces文件夾下新建一個cat.properties文件,寫入內容parent=tiger

public class Cat {
  @Value("貓") //直接注入字符串
  private String name;
  @Value("#{12+2}") //支持EL表達式
  private int age;
  @Value("${parent}") //支持配置文件讀取
  private String parent;
  public Cat() {
    System.out.println("貓被初始化");
  }

  @Override
  public String toString() {
    return "Cat{" +
        "name='" + name + '\'' +
        ", age=" + age +
        ", parent='" + parent + '\'' +
        '}';
  }
}
@Import({Cat.class})
@PropertySources({@PropertySource(value ="cat.properties")})
public class Appconfig {
}
public class Demo {
  public static void main(String[] args) {

    AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(Appconfig.class);
    Cat bean = context.getBean(Cat.class);
    System.out.println(bean); //Cat{name='貓', age=14, parent='tiger'}
    ConfigurableEnvironment environment = context.getEnvironment();
    System.out.println(environment.getProperty("parent")); //tiger


  }
}

@value和@PropertySource注解怎么在Spring中使用

以上就是@value和@PropertySource注解怎么在Spring中使用,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

读书| 于田县| 宜黄县| 洛川县| 潞城市| 拉孜县| 福建省| 尚志市| 新巴尔虎右旗| 怀来县| 义乌市| 仪陇县| 友谊县| 穆棱市| 临清市| 津市市| 惠水县| 繁昌县| 蒙山县| 成都市| 肥乡县| 阿坝县| 湘潭县| 芜湖县| 河曲县| 山东省| 托克托县| 德安县| 顺平县| 襄樊市| 香河县| 柳河县| 拜泉县| 闽侯县| 温州市| 平邑县| 台北市| 花莲市| 边坝县| 马尔康县| 浦县|