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

溫馨提示×

溫馨提示×

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

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

怎么在SPRINGBOOT中讀取PROPERTIES配置文件數據

發布時間:2021-05-25 16:34:07 來源:億速云 閱讀:192 作者:Leah 欄目:編程語言

怎么在SPRINGBOOT中讀取PROPERTIES配置文件數據?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

一.使用@ConfigurationProperties來讀取

1、Coffer entity

@Configuration
@ConfigurationProperties(prefix = "coffer")
@PropertySource("classpath:config/coffer.properties")
public class Coffer {
  private String brand;
  private Double length;
  private Double width;
  private Double height;          //省略了get/set方法
  private String[] contains;
  private ArrayList<Fruit> fruits;
  private HashMap<String,Object> map;
}

2、Fruit entity

@Configuration
@ConfigurationProperties(prefix = "coffer.fruits")
@PropertySource("classpath:config/coffer.properties")
public class Fruit {
  private String fruitName;
  private String fruitColor;        //省略了get/set方法 
}

3、coffer.properties

coffer.brand=Camel
coffer.length=100.00
coffer.width=80.00
coffer.height=60.00
coffer.contains[0]=Raincoat
coffer.contains[1]=trousers
coffer.contains[2]=hat
coffer.contains[3]=glove
coffer.contains[4]=scarf
coffer.contains[5]=hood
coffer.fruits[0].fruitName=apricot
coffer.fruits[0].fruitColor=yellow
coffer.fruits[1].fruitName=plum
coffer.fruits[1].fruitColor=green
coffer.fruits[2].fruitName=pineapple
coffer.fruits[2].fruitColor=yellow
coffer.fruits[3].fruitName=watermelon
coffer.fruits[3].fruitColor=green
coffer.fruits[4].fruitName=strawberry
coffer.fruits[4].fruitColor=red
coffer.map.name=xiaomao
coffer.map.age=22
coffer.map.gender=female

4、springbootApplicationTest

@SpringBootTest
class SpringbootApplicationTests {

  @Autowired
  private ApplicationContext ioc;

  @Autowired
  private Coffer coffer;

  @Test
  public void springbootTest(){
    System.out.println(coffer);
  }
}

5、result

Coffer{
  brand='Camel', 
  length=100.0, 
  width=80.0, 
  height=60.0, 
  contains=[Raincoat, trousers, hat, glove, scarf, hood], 
  fruits=[
       Fruit{fruitName='apricot', fruitColor='yellow'}, 
       Fruit{fruitName='plum', fruitColor='green'}, 
       Fruit{fruitName='pineapple', fruitColor='yellow'}, 
       Fruit{fruitName='watermelon', fruitColor='green'}, 
       Fruit{fruitName='strawberry', fruitColor='red'}
      ], 
  map={age=22, gender=female, name=xiaomao}}

二、使用@Value來讀取

在springTest中無法使用@Value來讀取配置屬性,需要放到Controller中去讀取

@PropertySource("classpath:config/coffer.properties")
@RestController
public class SpringbootController {

  @Value("${coffer.brand}")
  private String brand;
  @Value("${coffer.height}")
  private Double height;

  @RequestMapping("/test")
  public String springbootTest() {
    return brand+"====="+height;
  }
}

springboot是什么

springboot一種全新的編程規范,其設計目的是用來簡化新Spring應用的初始搭建以及開發過程,SpringBoot也是一個服務于框架的框架,服務范圍是簡化配置文件。

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

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

AI

余庆县| 江津市| 延川县| 连平县| 乌兰县| 临桂县| 焉耆| 土默特左旗| 五指山市| 肃北| 沽源县| 镇雄县| 依兰县| 临湘市| 黑龙江省| 莆田市| 个旧市| 仁寿县| 瑞安市| 胶州市| 道孚县| 辛集市| 龙岩市| 庄河市| 双桥区| 牡丹江市| 丰城市| 林州市| 琼结县| 潞城市| 汶川县| 阳新县| 江油市| 酉阳| 安图县| 张家口市| 曲周县| 嘉义市| 乌兰察布市| 淅川县| 江口县|