亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

使用Spring怎么對組件進行賦值

發布時間:2021-04-17 17:58:33 來源:億速云 閱讀:154 作者:Leah 欄目:編程語言

使用Spring怎么對組件進行賦值?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

1. @Value & @PropertySource

1.1 使用方式

@PropertySource:讀取外部配置文件中的 k/v 保存到運行的環境變量中;加載完外部的配置文件以后使用 ${} 取出配置文件的值

@Value:賦值

  • 基本數值

  • 可以寫 SpEL,#{}

  • 可以寫 ${};取出配置文件【properties】中的值(在運行環境變量里面的值)

1.2 代碼

1. Person

@Data
@Slf4j
@ToString
public class Person {

  @Value("#{001+001}")
  private Long id;

  @Value("zs")
  private String name;

  @Value("${person.address}")
  private String address;

  @Value("${person.age:19}")
  private Integer age;

}

2. SpringConfig

@Configuration
@PropertySource(value = "classpath:person.properties")
public class SpringConfig {

  @Bean
  public Person person() {
    return new Person();
  }

}

3. PropertiesTest

public class PropertiesTest {

  public static void main(String[] args) {
    AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(SpringConfig.class);
    Person person = context.getBean(Person.class);
    System.out.println(person);
    //Person(id=2, name=zs, address=上海市, age=19)
  }

}

2. @Profile

2.1 使用方式

@Profile:指定組件在哪個環境的情況下才能被注冊到容器中,不指定,任何環境下都能注冊這個組件

加了環境標識的 bean,只有這個環境被激活的時候才能注冊到容器中。默認是 default 環境

寫在配置類上,只有是指定的環境的時候,整個配置類里面的所有配置才能開始生效

沒有標注環境標識的 bean 在任何環境下都是加載的

2.2 代碼

1. Message

@Data
@NoArgsConstructor
@AllArgsConstructor
public class Message {

  private String label = null;

}

2. SpringConfig

@Configuration
public class SpringConfig {

  @Profile("default")
  @Bean
  public Message defaultMessage() {
    return new Message("default");
  }

  @Profile("dev")
  @Bean
  public Message devMessage() {
    return new Message("dev");
  }

  @Profile("test")
  @Bean
  public Message testMessage() {
    return new Message("test");
  }

  @Profile("prod")
  @Bean
  public Message prodMessage() {
    return new Message("prod");
  }

}

3. 激活方式 1

激活 profile:設置虛擬機參數 -Dspring.profiles.active=dev,test

public class ProfileTest {

  public static void main(String[] args) {
    
    AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(SpringConfig.class);
    String[] names = context.getBeanNamesForType(Message.class);
    for (String name : names) {
      System.out.println(name);
    }
    //devMessage
    //prodMessage
  }

}

4. 激活方式 2

public class ProfileTest {

  public static void main(String[] args) {
    //1. 創建一個 AnnotationConfigApplicationContext
    AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
    //2. 設置需要激活的環境
    context.getEnvironment().setActiveProfiles("dev", "prod");
    //3. 注冊主配置類
    context.register(SpringConfig.class);
    //4. 刷新容器
    context.refresh();
    String[] names = context.getBeanNamesForType(Message.class);
    for (String name : names) {
      System.out.println(name);
    }
    //testMessage
    //prodMessage
  }

}

看完上述內容,你們掌握使用Spring怎么對組件進行賦值的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

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

AI

东光县| 扎鲁特旗| 积石山| 咸阳市| 集安市| 富顺县| 长岛县| 纳雍县| 成都市| 曲阜市| 施秉县| 报价| 大姚县| 桦川县| 江油市| 张家川| 鞍山市| 汉阴县| 虞城县| 田东县| 同心县| 根河市| 琼结县| 青铜峡市| 肇源县| 祁门县| 盐源县| 科尔| 正宁县| 房产| 剑川县| 康马县| 青川县| 乾安县| 怀化市| 云阳县| 南昌县| 辽阳市| 龙陵县| 泽州县| 三穗县|