真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎么在SPRINGBOOT中讀取PROPERTIES配置文件數(shù)據(jù)

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

公司主營(yíng)業(yè)務(wù):成都網(wǎng)站設(shè)計(jì)、網(wǎng)站制作、移動(dòng)網(wǎng)站開發(fā)等業(yè)務(wù)。幫助企業(yè)客戶真正實(shí)現(xiàn)互聯(lián)網(wǎng)宣傳,提高企業(yè)的競(jìng)爭(zhēng)能力。創(chuàng)新互聯(lián)是一支青春激揚(yáng)、勤奮敬業(yè)、活力青春激揚(yáng)、勤奮敬業(yè)、活力澎湃、和諧高效的團(tuán)隊(duì)。公司秉承以“開放、自由、嚴(yán)謹(jǐn)、自律”為核心的企業(yè)文化,感謝他們對(duì)我們的高要求,感謝他們從不同領(lǐng)域給我們帶來(lái)的挑戰(zhàn),讓我們激情的團(tuán)隊(duì)有機(jī)會(huì)用頭腦與智慧不斷的給客戶帶來(lái)驚喜。創(chuàng)新互聯(lián)推出景谷免費(fèi)做網(wǎng)站回饋大家。

一.使用@ConfigurationProperties來(lái)讀取

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 fruits;
  private HashMap 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來(lái)讀取

在springTest中無(wú)法使用@Value來(lái)讀取配置屬性,需要放到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一種全新的編程規(guī)范,其設(shè)計(jì)目的是用來(lái)簡(jiǎn)化新Spring應(yīng)用的初始搭建以及開發(fā)過(guò)程,SpringBoot也是一個(gè)服務(wù)于框架的框架,服務(wù)范圍是簡(jiǎn)化配置文件。

看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對(duì)創(chuàng)新互聯(lián)的支持。


網(wǎng)站題目:怎么在SPRINGBOOT中讀取PROPERTIES配置文件數(shù)據(jù)
文章出自:http://weahome.cn/article/gsjdgc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部