溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

怎么在Spring Boot中配置元數(shù)據(jù)

發(fā)布時(shí)間:2021-05-19 16:11:48 來(lái)源:億速云 閱讀:153 作者:Leah 欄目:編程語(yǔ)言

這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)?lái)有關(guān)怎么在Spring Boot中配置元數(shù)據(jù),文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

配置元數(shù)據(jù)

作為開(kāi)發(fā)人員,我們開(kāi)發(fā)的大多數(shù)應(yīng)用程序在某種程度上必須是可配置的。但是在通常情況下,我們并不能夠真正的理解配置參數(shù)的作用,比如它有默認(rèn)值,又或者是過(guò)時(shí)的,有時(shí)我們甚至不知道該屬性的存在。

為了幫助我們理清楚,Spring Boot 生成了配置元數(shù)據(jù)的 JSON 文件,為我們提供關(guān)于如何使用屬性的有用信息。所以,配置元數(shù)據(jù)是一個(gè)描述性文件,它包含與配置屬性交互所需的必要信息。

這個(gè)文件的真正好處是IDE也可以讀取它,從而為我們自動(dòng)配置完成Spring屬性以及其他配置提示。

依賴

為了生成此配置元數(shù)據(jù),我們將使用 spring-boot-configuration-processor 的依賴.

因此,讓我們繼續(xù)將依賴項(xiàng)添加為可選依賴 :

<dependency>  
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-configuration-processor</artifactId>
  <version>2.1.7.RELEASE</version>
  <optional>true</optional>
</dependency>

這種依賴關(guān)系將為我們提供在構(gòu)建項(xiàng)目時(shí)調(diào)用的 Java 注解處理器。我們稍后會(huì)詳細(xì)討論這個(gè)問(wèn)題。

為了防止 @ConfigurationProperties 不應(yīng)用于我們的項(xiàng)目使用的其他模塊,在 Maven 中添加依賴項(xiàng)為可選依賴 是最好的做法。

配置屬性示例

現(xiàn)在來(lái)研究處理器是怎么工作的,我們需要使用 Java bean 獲取在 Spring Boot 應(yīng)用程序中包含一些屬性:

@Configuration
@ConfigurationProperties(prefix = "database")
public class DatabaseProperties {
  
  public static class Server {
    private String ip;
    private int port;
    
    // standard getters and setters
  }

  private String username;
  private String password;
  private Server server;
  
  // standard getters and setters
}

要做到這一點(diǎn),我們可以使用 @ConfigurationProperties 注解。配置處理器會(huì)掃描使用了此注解的類和方法,用來(lái)訪問(wèn)配置參數(shù)并生成配置元數(shù)據(jù)。

讓我們將這些屬性添加到屬性文件中。在示例中,我們把文件命名為 databaseproperties-test.properties:

#Simple Properties
database.username=baeldung
database.password=password

我們還將添加一個(gè)測(cè)試,以確保我們都做對(duì)了:

@RunWith(SpringRunner.class)
@SpringBootTest(classes = AnnotationProcessorApplication.class)
@TestPropertySource("classpath:databaseproperties-test.properties")
public class DatabasePropertiesIntegrationTest {

  @Autowired
  private DatabaseProperties databaseProperties;

  @Test
  public void whenSimplePropertyQueriedThenReturnsPropertyValue() 
   throws Exception {
    Assert.assertEquals("Incorrectly bound Username property", 
     "baeldung", databaseProperties.getUsername());
    Assert.assertEquals("Incorrectly bound Password property", 
     "password", databaseProperties.getPassword());
  }
}

我們通過(guò)內(nèi)部類 Server 還添加了嵌套屬性 database.server.id 和 database.server.port 。我們應(yīng)該添加內(nèi)部類 Server 以及一個(gè) server 的屬性并且生成他的 getter 和 setter 方法。

在我們的測(cè)試中,讓我們快速檢查一下,確保我們也可以成功地設(shè)置和讀取嵌套屬性:

@Test
public void whenNestedPropertyQueriedThenReturnsPropertyValue() 
 throws Exception {
  Assert.assertEquals("Incorrectly bound Server IP nested property",
   "127.0.0.1", databaseProperties.getServer().getIp());
  Assert.assertEquals("Incorrectly bound Server Port nested property", 
   3306, databaseProperties.getServer().getPort());
}

好了,現(xiàn)在我們準(zhǔn)備使用處理器了。

生成配置元數(shù)據(jù)

我們?cè)谇懊嫣岬竭^(guò),配置處理器生成一個(gè)文件 – 它是使用注解處理實(shí)現(xiàn)的。

所以,在項(xiàng)目編譯之后,我們將在目錄 target/classes/META-INF 下看到文件名為 spring-configuration-metadata.json 的文件:

{
 "groups": [
  {
   "name": "database",
   "type": "com.baeldung.autoconfiguration.annotationprocessor.DatabaseProperties",
   "sourceType": "com.baeldung.autoconfiguration.annotationprocessor.DatabaseProperties"
  },
  {
   "name": "database.server",
   "type": "com.baeldung.autoconfiguration.annotationprocessor.DatabaseProperties$Server",
   "sourceType": "com.baeldung.autoconfiguration.annotationprocessor.DatabaseProperties",
   "sourceMethod": "getServer()"
  }
 ],
 "properties": [
  {
   "name": "database.password",
   "type": "java.lang.String",
   "sourceType": "com.baeldung.autoconfiguration.annotationprocessor.DatabaseProperties"
  },
  {
   "name": "database.server.ip",
   "type": "java.lang.String",
   "sourceType": "com.baeldung.autoconfiguration.annotationprocessor.DatabaseProperties$Server"
  },
  {
   "name": "database.server.port",
   "type": "java.lang.Integer",
   "sourceType": "com.baeldung.autoconfiguration.annotationprocessor.DatabaseProperties$Server",
   "defaultValue": 0
  },
  {
   "name": "database.username",
   "type": "java.lang.String",
   "sourceType": "com.baeldung.autoconfiguration.annotationprocessor.DatabaseProperties"
  }
 ],
 "hints": []
}

接下來(lái),讓我們看看更改 Java bean 上的注解如何影響元數(shù)據(jù)。

關(guān)于配置元數(shù)據(jù)的其他信息

首先,讓我們將 JavaDoc 注釋添加到 Server 上.

第二,讓我們給出一個(gè) database.server.port 字段的默認(rèn)值并最后添加 @Min 和 @Max 注解:

public static class Server {

  /**
   * The IP of the database server
   */
  private String ip;

  /**
   * The Port of the database server.
   * The Default value is 443.
   * The allowed values are in the range 400-4000.
   */
  @Min(400)
  @Max(800)
  private int port = 443;

  // standard getters and setters
}

如果我們檢查 spring-configuration-metadata.json 文件,我們將看到這些額外的信息得到了反映:

{
 "groups": [
  {
   "name": "database",
   "type": "com.baeldung.autoconfiguration.annotationprocessor.DatabaseProperties",
   "sourceType": "com.baeldung.autoconfiguration.annotationprocessor.DatabaseProperties"
  },
  {
   "name": "database.server",
   "type": "com.baeldung.autoconfiguration.annotationprocessor.DatabaseProperties$Server",
   "sourceType": "com.baeldung.autoconfiguration.annotationprocessor.DatabaseProperties",
   "sourceMethod": "getServer()"
  }
 ],
 "properties": [
  {
   "name": "database.password",
   "type": "java.lang.String",
   "sourceType": "com.baeldung.autoconfiguration.annotationprocessor.DatabaseProperties"
  },
  {
   "name": "database.server.ip",
   "type": "java.lang.String",
   "description": "The IP of the database server",
   "sourceType": "com.baeldung.autoconfiguration.annotationprocessor.DatabaseProperties$Server"
  },
  {
   "name": "database.server.port",
   "type": "java.lang.Integer",
   "description": "The Port of the database server. The Default value is 443.
    The allowed values are in the range 400-4000",
   "sourceType": "com.baeldung.autoconfiguration.annotationprocessor.DatabaseProperties$Server",
   "defaultValue": 443
  },
  {
   "name": "database.username",
   "type": "java.lang.String",
   "sourceType": "com.baeldung.autoconfiguration.annotationprocessor.DatabaseProperties"
  }
 ],
 "hints": []
}

我們可以找到 database.server.ip 和 database.server.port 屬性的不同之處。事實(shí)上,額外的信息是非常有幫助的。開(kāi)發(fā)人員和 IDE 都更容易理解每個(gè)屬性的功能。

我們還應(yīng)該確保觸發(fā)構(gòu)建以獲得更新的文件。在Eclipse中,如果選中“自動(dòng)構(gòu)建”選項(xiàng),則每個(gè)保存操作都會(huì)觸發(fā)一次構(gòu)建。在 IntelliJ 中,我們應(yīng)該手動(dòng)觸發(fā)構(gòu)建。

理解元數(shù)據(jù)格式

讓我們仔細(xì)看看 JSON 元數(shù)據(jù)文件,并討論其組成。

Groups 是用于分組其他屬性的較高級(jí)別的項(xiàng),而不指定值本身。在我們的例子中,我們有數(shù)據(jù)庫(kù)組,它也是配置屬性的前綴。我們還有一個(gè) database 組,它是通過(guò)內(nèi)部類把 IP 和 port 屬性作為一個(gè)組。

屬性是可以為其指定值的配置項(xiàng)。這些屬性配置在后綴為 .properties或 .yml* 文件中,并且可以有額外的信息,比如默認(rèn)值和驗(yàn)證,就像我們?cè)谏厦娴氖纠锌吹降哪菢印?/p>

提示是幫助用戶設(shè)置屬性值的附加信息。例如,如果我們有一組屬性的允許值,我們可以提供每個(gè)屬性的描述。IDE 將為這些提示提供自動(dòng)選擇的幫助。

配置元數(shù)據(jù)上的每個(gè)組成都有自己的屬性。來(lái)解釋配置屬性的詳細(xì)用法。

springboot是什么

springboot一種全新的編程規(guī)范,其設(shè)計(jì)目的是用來(lái)簡(jiǎn)化新Spring應(yīng)用的初始搭建以及開(kāi)發(fā)過(guò)程,SpringBoot也是一個(gè)服務(wù)于框架的框架,服務(wù)范圍是簡(jiǎn)化配置文件。

上述就是小編為大家分享的怎么在Spring Boot中配置元數(shù)據(jù)了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI